diff options
author | Ori Bernstein <ori@markovcorp.com> | 2017-12-04 12:14:13 -0800 |
---|---|---|
committer | Ori Bernstein <ori@markovcorp.com> | 2017-12-04 12:16:15 -0800 |
commit | ecdf6cac8376af2b0b52c14025ccaa0c4c91a843 (patch) | |
tree | 11b715a7ba61a47c4cc24b7e5040d28b8a07252a /lib/crypto/test/md5.myr | |
parent | ebbdfc2631ac5876397ccc52453b69cfd223c95d (diff) | |
download | mc-ecdf6cac8376af2b0b52c14025ccaa0c4c91a843.tar.gz |
We don't need std.sleq any more.kill-sleq
Diffstat (limited to 'lib/crypto/test/md5.myr')
-rw-r--r-- | lib/crypto/test/md5.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/test/md5.myr b/lib/crypto/test/md5.myr index 380c531..c042363 100644 --- a/lib/crypto/test/md5.myr +++ b/lib/crypto/test/md5.myr @@ -22,7 +22,7 @@ const hasheq = {got, expected std.sbfmt(sb, "{p=0,w=2,x}", x) ;; str = std.sbfin(sb) - if (!std.sleq(str, expected)) + if (!std.eq(str, expected)) std.fatal("mismatched hashes:\n\tgot:\t{}\n\texpected:\t{}\n", str, expected) ;; std.slfree(str) |