1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-02 16:50:25 +02:00

fix tests

This commit is contained in:
Chris Lu 2020-08-19 01:37:56 -07:00
parent 839634097f
commit 3b4b1d4a77
2 changed files with 4 additions and 4 deletions

View file

@ -129,8 +129,8 @@ func TestOverflow(t *testing.T) {
cs.deleteOverflowEntry(4)
if len(cs.overflow) != 4 {
t.Fatalf("expecting 4 entries now: %+v", cs.overflow)
if len(cs.overflow) != 5 {
t.Fatalf("expecting 5 entries now: %+v", cs.overflow)
}
_, x, _ := cs.findOverflowEntry(5)
@ -146,7 +146,7 @@ func TestOverflow(t *testing.T) {
cs.deleteOverflowEntry(1)
for i, x := range cs.overflow {
println("overflow[", i, "]:", x.Key)
println("overflow[", i, "]:", x.Key, "size", x.Size)
}
println()

View file

@ -113,7 +113,7 @@ func TestCompaction(t *testing.T) {
}
n := newEmptyNeedle(uint64(i))
size, err := v.readNeedle(n)
size, err := v.readNeedle(n, nil)
if err != nil {
t.Fatalf("read file %d: %v", i, err)
}