emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master c5f9d47 1/3: Fix bugs in JSON test


From: Philipp Stephani
Subject: [Emacs-diffs] master c5f9d47 1/3: Fix bugs in JSON test
Date: Thu, 21 Dec 2017 20:03:42 -0500 (EST)

branch: master
commit c5f9d47ba4eec5e6eebcd4e21ebee78d3a3e4ff4
Author: Philipp Stephani <address@hidden>
Commit: Philipp Stephani <address@hidden>

    Fix bugs in JSON test
    
    * test/src/json-tests.el (json-serialize/invalid-unicode): Fix two
    bugs that canceled each other out.  "a\xCCb" is actually a valid
    Unicode string because the hexadecimal character escape isn't
    terminated by the "b".  But this was masked by an incorrect
    closing parentheses, causing an unrelated error.
---
 test/src/json-tests.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/src/json-tests.el b/test/src/json-tests.el
index 100bf7b..13953be 100644
--- a/test/src/json-tests.el
+++ b/test/src/json-tests.el
@@ -89,7 +89,7 @@
   (should-error (json-serialize ["a\uDBBBb"]) :type 'json-out-of-memory)
   (should-error (json-serialize (vector (string ?a #x110000 ?b)))
                 :type 'json-out-of-memory)
-  (should-error (json-serialize ["a\xCCb"] :type 'json-out-of-memory)))
+  (should-error (json-serialize ["u\xCCv"]) :type 'json-out-of-memory))
 
 (ert-deftest json-parse-string/null ()
   (skip-unless (fboundp 'json-parse-string))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]