aboutsummaryrefslogtreecommitdiff
path: root/test/gleam_json_test.gleam
diff options
context:
space:
mode:
Diffstat (limited to 'test/gleam_json_test.gleam')
-rw-r--r--test/gleam_json_test.gleam4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gleam_json_test.gleam b/test/gleam_json_test.gleam
index 7617ebb..dae51b6 100644
--- a/test/gleam_json_test.gleam
+++ b/test/gleam_json_test.gleam
@@ -47,12 +47,12 @@ pub fn encode_list_test() {
}
pub fn encode_nullable_some_test() {
- json.nullable(Some(5), json.int)
+ json.nullable(Some(5), the: json.int)
|> should_encode("5")
}
pub fn encode_nullable_none_test() {
- json.nullable(None, json.int)
+ json.nullable(None, the: json.int)
|> should_encode("null")
}