]> git.eshelyaron.com Git - emacs.git/commitdiff
Adjust help-fns.el tests for recent change
authorStefan Kangas <stefan@marxist.se>
Fri, 22 Jul 2022 22:06:38 +0000 (00:06 +0200)
committerStefan Kangas <stefan@marxist.se>
Fri, 22 Jul 2022 22:06:38 +0000 (00:06 +0200)
* test/lisp/help-fns-tests.el (help-fns-test-lisp-defun)
(help-fns-test-lisp-defsubst): Adjust tests for recent change.

test/lisp/help-fns-tests.el

index 4002501ddeead91ef7fa8a87f9766a6981a4c66e..3132a590231a0417d17d7229122e3fed9c5c53a9 100644 (file)
@@ -63,13 +63,13 @@ Return first line of the output of (describe-function-1 FUNC)."
 
 (ert-deftest help-fns-test-lisp-defun ()
   (let ((regexp (if (featurep 'native-compile)
-                    "a native compiled Lisp function in .+subr\\.el"
-                  "a compiled Lisp function in .+subr\\.el"))
+                    "a native-compiled Lisp function in .+subr\\.el"
+                  "a byte-compiled Lisp function in .+subr\\.el"))
         (result (help-fns-tests--describe-function 'last)))
     (should (string-match regexp result))))
 
 (ert-deftest help-fns-test-lisp-defsubst ()
-  (let ((regexp "a compiled Lisp function in .+subr\\.el")
+  (let ((regexp "a byte-compiled Lisp function in .+subr\\.el")
         (result (help-fns-tests--describe-function 'posn-window)))
     (should (string-match regexp result))))