core/rawdb: fix freezer table test error check

Fixes: Condition is always 'false' because 'err' is always 'nil'
This commit is contained in:
meowsbits 2020-03-18 06:55:30 -05:00 committed by GitHub
parent 5dd0cd12ec
commit 20a092fb9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -196,10 +196,8 @@ func TestFreezerRepairDanglingHeadLarge(t *testing.T) {
f.Append(uint64(x), data)
}
// The last item should be there
if _, err = f.Retrieve(f.items - 1); err == nil {
if err != nil {
t.Fatal(err)
}
if _, err = f.Retrieve(f.items - 1); err != nil {
t.Fatal(err)
}
f.Close()
}