Skip to content

Commit 3532fcc

Browse files
committed
widen bounds for atomic assertion
1 parent c9c82d7 commit 3532fcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trie/dtrie/dtrie_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ func TestIterate(t *testing.T) {
155155
for atomic.LoadInt64(&c) < 100 {
156156
}
157157
close(stop)
158-
assert.True(t, c > 99 && c < 110)
158+
assert.True(t, c > 99 && c < 1000)
159159
// test with collisions
160160
n = insertTest(t, collisionHash, 1000)
161161
c = 0

0 commit comments

Comments
 (0)