Skip to content

Commit 6e1cecf

Browse files
amikaitrend-amikai-chuang
authored andcommitted
Fix the test of Backward
1 parent df9d672 commit 6e1cecf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

iter_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ func TestBackward(t *testing.T) {
105105
b.AddInt(MaxUint32)
106106
it := Values(b)
107107

108-
// only one value MaxUint16
108+
// only one value MaxUint32
109109
it(func(val uint32) bool {
110-
assert.EqualValues(t, MaxUint32, val)
110+
assert.EqualValues(t, uint32(MaxUint32), val)
111111
return true
112112
})
113113
})

0 commit comments

Comments
 (0)