]> git.eshelyaron.com Git - emacs.git/commitdiff
Silence byte-compiler in two tests
authorStefan Kangas <stefan@marxist.se>
Thu, 1 Oct 2020 13:34:08 +0000 (15:34 +0200)
committerStefan Kangas <stefan@marxist.se>
Thu, 1 Oct 2020 13:34:46 +0000 (15:34 +0200)
* test/lisp/obsolete/cl-tests.el (require):
* test/lisp/simple-tests.el (simple-test-count-words-bug-41761):
Silence byte-compiler.

test/lisp/obsolete/cl-tests.el
test/lisp/simple-tests.el

index 37061df0a7aefad1630065868131e721a9384bcc..3f3fda3638e95d3ca6a0bdf8d29a3847a3c70b1d 100644 (file)
@@ -21,7 +21,8 @@
 
 ;;; Code:
 
-(require 'cl)
+(with-no-warnings
+  (require 'cl))
 (require 'ert)
 
 \f
index 457de91c149ac1875e9212535dfeda98a6ecf40b..d4b316811e6723c0de1997847816350f7106c1df 100644 (file)
@@ -44,7 +44,7 @@
 ;;; `count-words'
 (ert-deftest simple-test-count-words-bug-41761 ()
   (with-temp-buffer
-    (dotimes (i 10) (insert (propertize "test " 'field (cons nil nil))))
+    (dotimes (_i 10) (insert (propertize "test " 'field (cons nil nil))))
     (should (= (count-words (point-min) (point-max)) 10))))
 
 \f