]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove another test for deleted lread feature
authorGlenn Morris <rgm@gnu.org>
Sat, 15 Feb 2020 17:11:34 +0000 (09:11 -0800)
committerGlenn Morris <rgm@gnu.org>
Sat, 15 Feb 2020 17:11:34 +0000 (09:11 -0800)
* test/lisp/emacs-lisp/bytecomp-tests.el
(bytecomp-tests--old-style-backquotes): Remove.

test/lisp/emacs-lisp/bytecomp-tests.el

index a16adfedfb8d888363f5c77e9900393db1812125..de11ae22d50d655467c2cd561d93cdbe8c986876 100644 (file)
@@ -615,17 +615,6 @@ literals (Bug#20852)."
         (let ((byte-compile-dest-file-function (lambda (_) destination)))
           (should (byte-compile-file source)))))))
 
-(ert-deftest bytecomp-tests--old-style-backquotes ()
-  "Check that byte compiling warns about old-style backquotes."
-  (bytecomp-tests--with-temp-file source
-    (write-region "(` (a b))" nil source)
-    (bytecomp-tests--with-temp-file destination
-      (let* ((byte-compile-dest-file-function (lambda (_) destination))
-             (byte-compile-debug t)
-             (err (should-error (byte-compile-file source))))
-        (should (equal (cdr err) '("Old-style backquotes detected!")))))))
-
-
 (ert-deftest bytecomp-tests-function-put ()
   "Check `function-put' operates during compilation."
   (bytecomp-tests--with-temp-file source