aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test/test/lux/data/format/json.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/test/test/lux/data/format/json.lux')
-rw-r--r--stdlib/test/test/lux/data/format/json.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/test/test/lux/data/format/json.lux b/stdlib/test/test/lux/data/format/json.lux
index 2eca6febd..89244d6fe 100644
--- a/stdlib/test/test/lux/data/format/json.lux
+++ b/stdlib/test/test/lux/data/format/json.lux
@@ -8,7 +8,7 @@
["p" parser])
(data [text "Text/" Monoid<Text>]
text/format
- ["R" result]
+ ["E" error]
[bool]
[maybe]
[number "i/" Number<Int>]
@@ -166,8 +166,8 @@
(^open "@/") Codec<JSON,Record>]]
(test "Can encode/decode arbitrary types."
(|> sample @/encode @/decode
- (case> (#R;Success result)
+ (case> (#E;Success result)
(@/= sample result)
- (#R;Error error)
+ (#E;Error error)
false))))