From 73386de65fd49e7690da5203074a5ea603551db6 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 21 Feb 2024 14:21:23 +0200 Subject: Fix issue with json null representation in containers --- tests/type/json/testscript | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'tests/type') diff --git a/tests/type/json/testscript b/tests/type/json/testscript index 6beaf5d..36287b7 100644 --- a/tests/type/json/testscript +++ b/tests/type/json/testscript @@ -468,15 +468,19 @@ print ($m[1]) print $type($m[1]) print ($m[2][b]) + print ($m[0]) + print ($m[-1]) EOI - -1@"" 0@"" 1@[1,2] 2@{"a":1,"b":2} - -1 "" - 0 "" + -1@null 0@null 1@[1,2] 2@{"a":1,"b":2} + -1 null + 0 null 1 [1,2] 2 {"a":1,"b":2} [1,2] json 2 + + EOO } -- cgit v1.1