Skip to content

Commit 0a5805f

Browse files
lemireCopilot
andauthored
Update iter_test.go
Co-authored-by: Copilot <[email protected]>
1 parent fb89c43 commit 0a5805f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iter_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ func TestUnset(t *testing.T) {
268268
})
269269

270270
// Should include all values from 50-150 except 100
271-
assert.Equal(t, 100, len(actual)) // 150-50+1 - 1 = 101 - 1 = 100
271+
assert.Equal(t, 100, len(actual)) // 150-50+1-1 = 100
272272
assert.Contains(t, actual, uint32(50))
273273
assert.Contains(t, actual, uint32(99))
274274
assert.NotContains(t, actual, uint32(100))

0 commit comments

Comments
 (0)