diff options
author | Eduardo Julian | 2021-08-23 02:30:53 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-08-23 02:30:53 -0400 |
commit | ec1f31b5a1492d5e0ab260397291d4449483bbd9 (patch) | |
tree | c730b4ca89af366779b0ad0f46fae705b5c2bcbc /stdlib/source/test/lux/world | |
parent | 1ea83ecadccc5adee1bdb35bd11527c3982c015e (diff) |
The Python compiler can now be compiled by the new JVM compiler.
Diffstat (limited to 'stdlib/source/test/lux/world')
-rw-r--r-- | stdlib/source/test/lux/world/net/http/client.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/test/lux/world/net/http/client.lux b/stdlib/source/test/lux/world/net/http/client.lux index c9b3f12c9..994e2cbf3 100644 --- a/stdlib/source/test/lux/world/net/http/client.lux +++ b/stdlib/source/test/lux/world/net/http/client.lux @@ -57,8 +57,8 @@ #//.Options on_options #//.Trace on_trace) data (|> value - (\ nat.decimal encode) - (\ utf8.codec encode))] + (\ nat.decimal encoded) + (\ utf8.codec encoded))] (#try.Success [//status.ok {#//.headers headers #//.body (function (_ ?wanted_bytes) @@ -71,8 +71,8 @@ (do> try.monad [io.run!] [product.right (value@ #//.body) (function.on #.None) io.run!] - [product.right (\ utf8.codec decode)] - [(\ nat.decimal decode)] + [product.right (\ utf8.codec decoded)] + [(\ nat.decimal decoded)] [(nat.= <expected>) in]) (try.else false)))] |