From: Philipp Stephani Date: Sun, 7 Jan 2018 15:47:17 +0000 (+0100) Subject: ; Adapt a unit test to a recent change X-Git-Tag: emacs-27.0.90~5918 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f352ea6efd4554cee95568cee72a3dfa00de2abe;p=emacs.git ; Adapt a unit test to a recent change * test/lisp/emacs-lisp/bytecomp-tests.el (bytecomp-tests--old-style-backquotes): Fix expected error message. --- diff --git a/test/lisp/emacs-lisp/bytecomp-tests.el b/test/lisp/emacs-lisp/bytecomp-tests.el index 20ac948c35b..6ae7cdb9f9c 100644 --- a/test/lisp/emacs-lisp/bytecomp-tests.el +++ b/test/lisp/emacs-lisp/bytecomp-tests.el @@ -540,8 +540,7 @@ literals (Bug#20852)." (let* ((byte-compile-dest-file-function (lambda (_) destination)) (byte-compile-debug t) (err (should-error (byte-compile-file source)))) - (should (equal (cdr err) - '("Loading `nil': old-style backquotes detected!"))))))) + (should (equal (cdr err) '("Old-style backquotes detected!"))))))) (ert-deftest bytecomp-tests-function-put ()