aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--weed/filer2/filechunks_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer2/filechunks_test.go b/weed/filer2/filechunks_test.go
index eadf4d27f..e886702ff 100644
--- a/weed/filer2/filechunks_test.go
+++ b/weed/filer2/filechunks_test.go
@@ -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))
}
}