diff options
Diffstat (limited to 'tests/modules/hash/test.lua')
| -rw-r--r-- | tests/modules/hash/test.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/modules/hash/test.lua b/tests/modules/hash/test.lua index 6bfe89fcd..06722fd9d 100644 --- a/tests/modules/hash/test.lua +++ b/tests/modules/hash/test.lua @@ -1,10 +1,7 @@ function test_rand32(t) local set = {} - for i = 1, 1000000 do + for i = 1, 1000 do local r = hash.rand32() - if set[r] then - print("i: %d, r: %s, o: %s", i, r, set[r]) - end t:require(set[r] == nil) set[r] = r end |
