Merge pull request #20779 from meowsbits/patch-3
core/rawdb: fix freezer table test error check
This commit is contained in:
commit
36e93d2dd8
@ -196,11 +196,9 @@ func TestFreezerRepairDanglingHeadLarge(t *testing.T) {
|
|||||||
f.Append(uint64(x), data)
|
f.Append(uint64(x), data)
|
||||||
}
|
}
|
||||||
// The last item should be there
|
// The last item should be there
|
||||||
if _, err = f.Retrieve(f.items - 1); err == nil {
|
if _, err = f.Retrieve(f.items - 1); err != nil {
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
f.Close()
|
f.Close()
|
||||||
}
|
}
|
||||||
// open the index
|
// open the index
|
||||||
|
Loading…
Reference in New Issue
Block a user