From 76bff1a0003cc1b416dd6b1cc0e423a3a1ed6c74 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 17 May 2018 15:51:47 +0200 Subject: json: format slightly nicer escape sequences Make use the escape sequences allowed by JSON. Also update the linked RFC to the newest one. --- test/json.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/json.c') diff --git a/test/json.c b/test/json.c index 74fd20d748..d624f61cca 100644 --- a/test/json.c +++ b/test/json.c @@ -40,7 +40,8 @@ static const struct entry entries[] = { { "abc", .expect_fail = true}, { " 123 ", "123", NODE_INT64(123)}, { "123.25", "123.250000", NODE_FLOAT(123.25)}, - { TEXT("a\n\\"), TEXT("a\u000a\u005c"), NODE_STR("a\n\\")}, + { TEXT("a\n\\\/\\\""), TEXT("a\n\\/\\\""), NODE_STR("a\n\\/\\\"")}, + { TEXT("a\u2c29"), TEXT("aⰩ"), NODE_STR("a\342\260\251")}, { "[1,2,3]", "[1,2,3]", NODE_ARRAY(NODE_INT64(1), NODE_INT64(2), NODE_INT64(3))}, { "[ ]", "[]", NODE_ARRAY()}, -- cgit v1.2.3