Small fix for a JSON unit test.
* test/src/json-tests.el (json-parse-string/null): Make JSON object syntactically valid. This test is supposed to check whether an escaped null character causes an error, but without quoting the string it would be syntactically invalid in any case.
This commit is contained in:
parent
0d5caa9a0c
commit
b59429a43e
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@
|
|||
(skip-unless (fboundp 'json-parse-string))
|
||||
(should-error (json-parse-string "\x00") :type 'wrong-type-argument)
|
||||
;; FIXME: Reconsider whether this is the right behavior.
|
||||
(should-error (json-parse-string "[a\\u0000b]") :type 'json-parse-error))
|
||||
(should-error (json-parse-string "[\"a\\u0000b\"]") :type 'json-parse-error))
|
||||
|
||||
(ert-deftest json-parse-string/invalid-unicode ()
|
||||
"Some examples from
|
||||
|
|
Loading…
Add table
Reference in a new issue