diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-10-01 15:34:08 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-10-01 15:34:46 +0200 |
commit | af72f6d5109ba2b6e92bbc6f1ef12d83dae70e13 (patch) | |
tree | 528fb7d358e1f1b412e296782269bee12994c0bd /test/lisp/obsolete | |
parent | c6fa0ad315e38167cb81a4d8c143cc53ad783cc3 (diff) | |
download | emacs-af72f6d5109ba2b6e92bbc6f1ef12d83dae70e13.tar.gz emacs-af72f6d5109ba2b6e92bbc6f1ef12d83dae70e13.tar.bz2 emacs-af72f6d5109ba2b6e92bbc6f1ef12d83dae70e13.zip |
Silence byte-compiler in two tests
* test/lisp/obsolete/cl-tests.el (require):
* test/lisp/simple-tests.el (simple-test-count-words-bug-41761):
Silence byte-compiler.
Diffstat (limited to 'test/lisp/obsolete')
-rw-r--r-- | test/lisp/obsolete/cl-tests.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lisp/obsolete/cl-tests.el b/test/lisp/obsolete/cl-tests.el index 37061df0a7a..3f3fda3638e 100644 --- a/test/lisp/obsolete/cl-tests.el +++ b/test/lisp/obsolete/cl-tests.el @@ -21,7 +21,8 @@ ;;; Code: -(require 'cl) +(with-no-warnings + (require 'cl)) (require 'ert) |