summaryrefslogtreecommitdiff
path: root/test/lisp/obsolete
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-12-05 12:08:27 +0100
committerStefan Kangas <stefan@marxist.se>2021-12-05 12:08:27 +0100
commit9167fbd323c5f8ca1262372be0e213f284cadc67 (patch)
tree70c6e18ff92f0b2975c2203b6b5d85686a504595 /test/lisp/obsolete
parentbf869aa698a3c7f09cf9614b80906fcb4d343aba (diff)
downloademacs-9167fbd323c5f8ca1262372be0e213f284cadc67.tar.gz
emacs-9167fbd323c5f8ca1262372be0e213f284cadc67.tar.bz2
emacs-9167fbd323c5f8ca1262372be0e213f284cadc67.zip
Remove hacks for broken `with-suppressed-warnings'
* test/lisp/obsolete/cl-tests.el (labels-function-quoting): * test/lisp/tar-mode-tests.el (tar-mode-test-tar-grind-file-mode): Remove hack for broken `with-suppressed-warnings'.
Diffstat (limited to 'test/lisp/obsolete')
-rw-r--r--test/lisp/obsolete/cl-tests.el14
1 files changed, 4 insertions, 10 deletions
diff --git a/test/lisp/obsolete/cl-tests.el b/test/lisp/obsolete/cl-tests.el
index 0b8c1178f3a..659c51ebcf8 100644
--- a/test/lisp/obsolete/cl-tests.el
+++ b/test/lisp/obsolete/cl-tests.el
@@ -25,17 +25,11 @@
(require 'cl))
(require 'ert)
-
-
-;; Hack to work around the ERT limitation that we can't reliably use
-;; `with-suppressed-warnings' inside an `ert-deftest'. (Bug#36568)
-(defun cl-tests-labels-test ()
- (with-suppressed-warnings ((obsolete labels))
- (funcall (labels ((foo () t))
- #'foo))))
-
(ert-deftest labels-function-quoting ()
"Test that #'foo does the right thing in `labels'." ; Bug#31792.
- (should (eq (cl-tests-labels-test) t)))
+ (with-suppressed-warnings ((obsolete labels))
+ (should (eq (funcall (labels ((foo () t))
+ #'foo))
+ t))))
;;; cl-tests.el ends here