From 15a53bb5c786ff4f3ea7e4bae0c980f4caaf07d0 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 12 Jul 2021 07:31:00 -0700 Subject: tests: json: fix accidentally excluded tests. * tests/010/json.tl: Fix several tests being excluded from the (mtest ...) form to which they are expected to belong, one of them having an extra quote in the expected value, too. --- tests/010/json.tl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/010/json.tl') diff --git a/tests/010/json.tl b/tests/010/json.tl index 8d414b2e..46bcc23d 100644 --- a/tests/010/json.tl +++ b/tests/010/json.tl @@ -150,8 +150,8 @@ (file-get-jsons name) (1.0 t null) (file-get-string name) "1\ntrue\nnull\n" (command-put-json `cat > @name` #(#() #())) t - (file-get-string name) "[[],[]]\n") + (file-get-string name) "[[],[]]\n" (command-get-json `cat @name`) #(#() #()) (command-put-jsons `cat > @name` '(#() 1.0 nil)) t (file-get-string name) "[]\n1\nfalse\n" - (command-get-jsons `cat @name`) '(#() 1.0 nil)) + (command-get-jsons `cat @name`) (#() 1.0 nil))) -- cgit v1.2.3