diff options
author | Jakub Zelenka <bukka@php.net> | 2015-02-02 20:53:27 +0000 |
---|---|---|
committer | Jakub Zelenka <bukka@php.net> | 2015-02-02 20:53:27 +0000 |
commit | c3cd2d33ca89a6b2188e29cfbb1451818fd60024 (patch) | |
tree | 07d538750e0a6cb1335a6d3f69555de3c79378fa | |
parent | fdc14c64be4ccccd56a8f01339f908f2570b40ef (diff) | |
download | php-git-c3cd2d33ca89a6b2188e29cfbb1451818fd60024.tar.gz |
Fix invalid test for bug 54484
-rw-r--r-- | ext/json/tests/bug54484.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/tests/bug54484.phpt b/ext/json/tests/bug54484.phpt index e56d8bd86b..897c655afe 100644 --- a/ext/json/tests/bug54484.phpt +++ b/ext/json/tests/bug54484.phpt @@ -15,7 +15,7 @@ json_decode("invalid json"); var_dump(json_last_error()); -json_decode("\001 invalid json"); +json_decode("\"\001 invalid json\""); var_dump(json_last_error()); |