fix tests

This commit is contained in:
Chris Lu 2018-11-21 16:35:27 -08:00
parent e5ad2223a1
commit 99256100a0

View file

@ -52,10 +52,10 @@ func TestCompactFileChunks2(t *testing.T) {
compacted, garbage := CompactFileChunks(chunks)
if len(compacted) != 3 {
if len(compacted) != 4 {
t.Fatalf("unexpected compacted: %d", len(compacted))
}
if len(garbage) != 9 {
if len(garbage) != 8 {
t.Fatalf("unexpected garbage: %d", len(garbage))
}
}