Fix megacheck

pull/10234/head
Edd Robinson 2018-08-26 14:55:57 -06:00
parent 76237d80f2
commit a15bdeef92
1 changed files with 4 additions and 0 deletions

View File

@ -80,6 +80,10 @@ func TestLogFile_AddSeriesList(t *testing.T) {
},
)
if err != nil {
t.Fatal(err)
}
if got, exp := ids, make([]uint64, 2); !reflect.DeepEqual(got, exp) {
t.Fatalf("got ids %v, expected %v", got, exp)
}