diff options
author | Araq <rumpf_a@web.de> | 2011-01-15 11:50:12 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-01-15 11:50:12 +0100 |
commit | ff0b0f6b6dc433ae34dff37f5c78f2661c153d10 (patch) | |
tree | ddc9fde5848515659362d3e5380a897299bd4a27 /tests | |
parent | faac1bee85f3fd5b3b2d3fb407e5d98adef3db21 (diff) | |
download | Nim-ff0b0f6b6dc433ae34dff37f5c78f2661c153d10.tar.gz |
json module changes
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/testdata/jsontest.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testdata/jsontest.json b/tests/testdata/jsontest.json index d5555456a..714d18614 100755 --- a/tests/testdata/jsontest.json +++ b/tests/testdata/jsontest.json @@ -1,11 +1,11 @@ // Simple JSON test file -// (c) 2009 Andreas Rumpf +// (c) 2011 Andreas Rumpf /* a long comment */ { "key1": null, - {1: 2, {}: 4}: 12, + "obj": {"1": 2, "5": 4}, "key2": [ {}, @@ -19,7 +19,7 @@ ] , - "key3": false + "keyÄÖöoßß": false } // [{}, {899: 12, "x": "y"}, [], 123, 89, 89, "xyz", null, [], [], [1, 2, 3]] |