We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 970a8cb commit 872517eCopy full SHA for 872517e
iter_test.go
@@ -434,7 +434,7 @@ func TestUnsetIteratorPeekable(t *testing.T) {
434
435
t.Run("range including max uint32 unset", func(t *testing.T) {
436
b := New()
437
- b.AddInt(4294967294) // Set the value before max
+ b.Add(4294967294) // Set the value before max
438
439
it := b.UnsetIterator(4294967294, 4294967295)
440
@@ -449,7 +449,7 @@ func TestUnsetIteratorPeekable(t *testing.T) {
449
450
t.Run("max uint32 set", func(t *testing.T) {
451
452
- b.AddInt(4294967295) // Set max uint32
+ b.Add(4294967295) // Set max uint32
453
454
455
0 commit comments