summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIskren Chernev <iskren.chernev@gmail.com>2013-01-28 19:06:49 -0800
committerIskren Chernev <iskren.chernev@gmail.com>2013-01-28 19:06:49 -0800
commit78b089bc1e5a06af2be355260ff8d028d3dcd23f (patch)
treec382e9ea072cf0ce9392b42d07a28f9728b26ef5 /tests
parent3ae296f6946100e533a4358629aa34e74501a039 (diff)
downloadjson-c-78b089bc1e5a06af2be355260ff8d028d3dcd23f.tar.gz
Fixed test_parse for \f
Diffstat (limited to 'tests')
-rw-r--r--tests/test_parse.expected2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_parse.expected b/tests/test_parse.expected
index 97910dc..814dc62 100644
--- a/tests/test_parse.expected
+++ b/tests/test_parse.expected
@@ -44,7 +44,7 @@ json_tokener_parse_ex(tok, "blue" , 6) ... OK: got object of type [string
json_tokener_parse_ex(tok, "\"" , 4) ... OK: got object of type [string]: "\""
json_tokener_parse_ex(tok, "\\" , 4) ... OK: got object of type [string]: "\\"
json_tokener_parse_ex(tok, "\b" , 4) ... OK: got object of type [string]: "\b"
-json_tokener_parse_ex(tok, "\f" , 4) ... OK: got object of type [string]: "\u000c"
+json_tokener_parse_ex(tok, "\f" , 4) ... OK: got object of type [string]: "\f"
json_tokener_parse_ex(tok, "\n" , 4) ... OK: got object of type [string]: "\n"
json_tokener_parse_ex(tok, "\r" , 4) ... OK: got object of type [string]: "\r"
json_tokener_parse_ex(tok, "\t" , 4) ... OK: got object of type [string]: "\t"