Skip to content

Commit

Permalink
Update thashes.nim
Browse files Browse the repository at this point in the history
no need mention PR nim-lang#15915, fixed in nim-lang#15937
  • Loading branch information
bung87 committed Nov 13, 2020
1 parent fa14573 commit 67adeaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/stdlib/thashes.nim
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ suite "hashes":

test "VM and runtime should make the same hash value (hashWangYi1)":
const wy123 = hashWangYi1(123)
doAssert wy123 != 0, "need result = in hashWangYi1 see PR 15915 "
check wy123 != 0
check hashWangYi1(123) == wy123

test "hashIdentity value incorrect at 456":
Expand Down

0 comments on commit 67adeaa

Please sign in to comment.