test(git): change length of chunks (#2767)

This fixes one missed test in #2754 (comment).

The number of chunks doubled because each commit now has metadata + data.
This commit is contained in:
Richard Gomez 2024-04-30 08:34:12 -04:00 committed by GitHub
parent 6cf3a25a04
commit 13bd783d2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -585,6 +585,6 @@ func TestChunkUnit(t *testing.T) {
}, &reporter)
assert.NoError(t, err)
assert.Equal(t, 11, len(reporter.Chunks))
assert.Equal(t, 22, len(reporter.Chunks))
assert.Equal(t, 1, len(reporter.ChunkErrs))
}