diff options
author | Eduardo Julian | 2019-07-24 20:25:55 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-07-24 20:25:55 -0400 |
commit | e87fba1b7204ee611dcb5528b8a8a3716588c976 (patch) | |
tree | 77420205b2617c189a26af573b341771bf361b59 /stdlib/source/test | |
parent | edcc0a2433722d09e7b1ef7922e7fa1f51e7fc15 (diff) |
Small improvements here and there.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/test/lux/data/number/frac.lux | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stdlib/source/test/lux/data/number/frac.lux b/stdlib/source/test/lux/data/number/frac.lux index e683fb134..9edc0f921 100644 --- a/stdlib/source/test/lux/data/number/frac.lux +++ b/stdlib/source/test/lux/data/number/frac.lux @@ -48,6 +48,7 @@ (hex "+dead,BE.EF")))) (do r.monad [sample gen-frac] - (_.test (format (%.name (name-of /.frac-to-bits)) " " (%.name (name-of /.bits-to-frac))) - (|> sample /.frac-to-bits /.bits-to-frac (f/= sample)))) + (_.test (format (%.name (name-of /.to-bits)) + " & " (%.name (name-of /.from-bits))) + (|> sample /.to-bits /.from-bits (f/= sample)))) ))))) |