Merge pull request #709 from prometheus/fabxc/storage_test_fix
Fix storage test
This commit is contained in:
commit
6586b15367
|
@ -164,10 +164,9 @@ func TestLoop(t *testing.T) {
|
||||||
SyncStrategy: Adaptive,
|
SyncStrategy: Adaptive,
|
||||||
}
|
}
|
||||||
storage := NewMemorySeriesStorage(o)
|
storage := NewMemorySeriesStorage(o)
|
||||||
if err := storage.Start; err != nil {
|
if err := storage.Start(); err != nil {
|
||||||
t.Fatalf("Error starting storage: %s", err)
|
t.Fatalf("Error starting storage: %s", err)
|
||||||
}
|
}
|
||||||
storage.Start()
|
|
||||||
for _, s := range samples {
|
for _, s := range samples {
|
||||||
storage.Append(s)
|
storage.Append(s)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue