Browse Source

Merge pull request #66 from ichernev/fix-test-parse

Fixed test_parse for \f
tags/json-c-0.11-20130402
Eric Haszlakiewicz 12 years ago
parent
commit
ebeb6a40c9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/test_parse.expected

+ 1
- 1
tests/test_parse.expected View File

@@ -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"


Loading…
Cancel
Save