diff options
Diffstat (limited to 'lib/std/test/bitset.myr')
-rw-r--r-- | lib/std/test/bitset.myr | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/std/test/bitset.myr b/lib/std/test/bitset.myr index 9112537..6936cba 100644 --- a/lib/std/test/bitset.myr +++ b/lib/std/test/bitset.myr @@ -49,11 +49,11 @@ const main = { }], [.name="hash", .fn={ctx var bs = mkset([][:]) - testr.check(ctx, std.bshash(bs) == 2580988821, "wrong hash, got {}", std.bshash(bs)) + testr.check(ctx, std.bshash(bs) == 0x726fdb47dd0e0e31, "wrong hash, got {}", std.bshash(bs)) std.bsput(bs, 123456) - testr.check(ctx, std.bshash(bs) == 2020624217, "wrong hash, got {}", std.bshash(bs)) + testr.check(ctx, std.bshash(bs) == 0x778abc1d7706143b, "wrong hash, got {}", std.bshash(bs)) std.bsdel(bs, 123456) - testr.check(ctx, std.bshash(bs) == 2580988821, "wrong hash, got {}", std.bshash(bs)) + testr.check(ctx, std.bshash(bs) == 0x726fdb47dd0e0e31, "wrong hash, got {}", std.bshash(bs)) std.bsfree(bs) }] ][:]) |