diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/lisp/help-fns-tests.el | 2 | ||||
-rw-r--r-- | test/src/comp-tests.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/help-fns-tests.el b/test/lisp/help-fns-tests.el index 5b60939f8a8..513a0c2daea 100644 --- a/test/lisp/help-fns-tests.el +++ b/test/lisp/help-fns-tests.el @@ -62,7 +62,7 @@ Return first line of the output of (describe-function-1 FUNC)." (should (string-match regexp result)))) (ert-deftest help-fns-test-lisp-defun () - (let ((regexp (if (featurep 'nativecomp) + (let ((regexp (if (featurep 'native-compile) "a native compiled Lisp function in .+subr\\.el" "a compiled Lisp function in .+subr\\.el")) (result (help-fns-tests--describe-function 'last))) diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el index ba8b8b00936..e3e4bdd9b61 100644 --- a/test/src/comp-tests.el +++ b/test/src/comp-tests.el @@ -33,7 +33,7 @@ (defconst comp-test-dyn-src (ert-resource-file "comp-test-funcs-dyn.el")) -(when (featurep 'nativecomp) +(when (featurep 'native-compile) (require 'comp) (message "Compiling tests...") (load (native-compile comp-test-src)) |