branch: elpa/ws-butler
commit 506bd8fe5ec538056fdcff4d45c7fc3ba76d4851
Author: Sean Whitton <[email protected]>
Commit: Sean Whitton <[email protected]>
ws-butler-test.el: Tidy up calls to require
---
tests/ws-butler-tests.el | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/tests/ws-butler-tests.el b/tests/ws-butler-tests.el
index f49c1d614c..2adfe73217 100644
--- a/tests/ws-butler-tests.el
+++ b/tests/ws-butler-tests.el
@@ -1,10 +1,6 @@
-
(require 'ert)
+(require 'cl-lib)
-;; (require 'popup)
-
-;; for "every" function
-(require 'cl)
(load-file "ws-butler.el")
(defmacro ws-butler-test-with-test-buffer (&rest body)
@@ -28,7 +24,7 @@
(ws-butler-test-with-common-setup
(insert "a b c")
(execute-kbd-macro (read-kbd-macro "M-DEL"))
- (should (every #'identity (list 1 2 3)))
+ (should (cl-every #'identity (list 1 2 3)))
(should (string-equal (buffer-string) "a b "))))
(ert-deftest ws-butler-test-trim-predicate ()