From: Philipp Stephani Date: Fri, 22 Dec 2017 00:58:39 +0000 (+0100) Subject: Simplify a JSON test X-Git-Tag: emacs-27.0.90~5986 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1498ed3705a9b7c3340e5b42186736bf5ce5f8bb;p=emacs.git Simplify a JSON test * test/src/json-tests.el (json-serialize/invalid-unicode): Simplify test. Hexadecimal escape sequences allow putting non-Unicode characters in strings directly. --- diff --git a/test/src/json-tests.el b/test/src/json-tests.el index 13953beb151..71aa4a8b783 100644 --- a/test/src/json-tests.el +++ b/test/src/json-tests.el @@ -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 ()