mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-15 09:47:20 +00:00
Remove some unnecessary compat code
* test/lisp/emacs-lisp/ert-x-tests.el (ert-test-describe-test): * test/lisp/wdired-tests.el (wdired-test-unfinished-edit-01): Remove unnecessary compat code; these tests should never need to run on older versions of Emacs.
This commit is contained in:
parent
83b0fc4429
commit
9a3a2a00da
@ -187,18 +187,15 @@
|
||||
"Tests `ert-describe-test'."
|
||||
(save-window-excursion
|
||||
(ert-with-buffer-renamed ("*Help*")
|
||||
(if (< emacs-major-version 24)
|
||||
(should (equal (should-error (ert-describe-test 'ert-describe-test))
|
||||
'(error "Requires Emacs 24")))
|
||||
(ert-describe-test 'ert-test-describe-test)
|
||||
(with-current-buffer "*Help*"
|
||||
(let ((case-fold-search nil))
|
||||
(should (string-match (concat
|
||||
"\\`ert-test-describe-test is a test"
|
||||
" defined in"
|
||||
" ['`‘]ert-x-tests.elc?['’]\\.\n\n"
|
||||
"Tests ['`‘]ert-describe-test['’]\\.\n\\'")
|
||||
(buffer-string)))))))))
|
||||
(ert-describe-test 'ert-test-describe-test)
|
||||
(with-current-buffer "*Help*"
|
||||
(let ((case-fold-search nil))
|
||||
(should (string-match (concat
|
||||
"\\`ert-test-describe-test is a test"
|
||||
" defined in"
|
||||
" ['`‘]ert-x-tests.elc?['’]\\.\n\n"
|
||||
"Tests ['`‘]ert-describe-test['’]\\.\n\\'")
|
||||
(buffer-string))))))))
|
||||
|
||||
(ert-deftest ert-test-message-log-truncation ()
|
||||
:tags '(:causes-redisplay)
|
||||
|
@ -106,7 +106,6 @@ only the name before the link arrow."
|
||||
"Test editing a file name without saving the change.
|
||||
Finding the new name should be possible while still in
|
||||
wdired-mode."
|
||||
:expected-result (if (< emacs-major-version 27) :failed :passed)
|
||||
(let* ((test-dir (make-temp-file "test-dir-" t))
|
||||
(test-file (concat (file-name-as-directory test-dir) "foo.c"))
|
||||
(replace "bar")
|
||||
|
Loading…
Reference in New Issue
Block a user