diff options
author | Ori Bernstein <ori@markovcorp.com> | 2018-01-27 12:22:19 -0800 |
---|---|---|
committer | Ori Bernstein <ori@markovcorp.com> | 2018-01-27 12:23:36 -0800 |
commit | 4c94aae21c2c2aec19d4fd5871cfe92bc09303a7 (patch) | |
tree | b7c773a2274cb3b3ee46d9e90d54a3b6c4ddce37 /lib/std/test/ipparse.myr | |
parent | dbe9ae0f9dbed30d40952261384b4673766d83ca (diff) | |
download | mc-4c94aae21c2c2aec19d4fd5871cfe92bc09303a7.tar.gz |
Remove std.sleq
We have std.eq. We still export a generic sleq for
compatibility, but we don't need it or want it.
Diffstat (limited to 'lib/std/test/ipparse.myr')
-rw-r--r-- | lib/std/test/ipparse.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/test/ipparse.myr b/lib/std/test/ipparse.myr index fd6140a..dfed4d6 100644 --- a/lib/std/test/ipparse.myr +++ b/lib/std/test/ipparse.myr @@ -66,7 +66,7 @@ const eq = {ip, expected parsed = std.ipparse(ip) p = ipbytes(parsed) e = ipbytes(expected) - if !std.sleq(p, e) + if !std.eq(p, e) std.fput(1, "misparsed ip {}\n", ip) std.put("parsed: ") for b : p |