Skip to content

Commit 39ff4a5

Browse files
committed
update storage tests
1 parent 2a8093e commit 39ff4a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

storage/operation/stats_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ func TestSummarizeKeysByFirstByteConcurrent(t *testing.T) {
6161

6262
for i := 0; i < 256; i++ {
6363
count := 0
64-
if i == 102 { // events
64+
if i == 102 { // events (codeEvent)
6565
count = 30
66-
} else if i == 113 { // CDP
66+
} else if i == 100 { // CDP (codeChunkDataPack)
6767
count = 100
68-
} else if i == 36 { // results
68+
} else if i == 36 { // results (codeExecutionResult)
6969
count = 20
7070
}
7171
require.Equal(t, count, stats[byte(i)].Count, "byte %d", i)

0 commit comments

Comments
 (0)