]> git.eshelyaron.com Git - emacs.git/commitdiff
Simplify a JSON test
authorPhilipp Stephani <phst@google.com>
Fri, 22 Dec 2017 00:58:39 +0000 (01:58 +0100)
committerPhilipp Stephani <phst@google.com>
Fri, 22 Dec 2017 00:58:39 +0000 (01:58 +0100)
* test/src/json-tests.el (json-serialize/invalid-unicode):
Simplify test.  Hexadecimal escape sequences allow putting
non-Unicode characters in strings directly.

test/src/json-tests.el

index 13953beb1519008adcb70b54747b0a999ed61e4b..71aa4a8b783d566d056210c83533d67b2dc02f52 100644 (file)
@@ -87,8 +87,7 @@
   ;; FIXME: "out of memory" is the wrong error signal, but we don't
   ;; currently distinguish between error types when serializing.
   (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 ["u\x110000v"]) :type 'json-out-of-memory)
   (should-error (json-serialize ["u\xCCv"]) :type 'json-out-of-memory))
 
 (ert-deftest json-parse-string/null ()