aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorStefan Kangas2025-02-17 22:04:41 +0100
committerStefan Kangas2025-02-17 22:46:56 +0100
commit83bc811f7fad00b9b4ed3e4ffd67a96226991ca3 (patch)
tree9382b47ad12f62f6777fce6ecaa9f8b0ec46c921 /test/src
parentafbf932106fdd1043b0debe9fc9134e031e4c9a6 (diff)
downloademacs-83bc811f7fad00b9b4ed3e4ffd67a96226991ca3.tar.gz
emacs-83bc811f7fad00b9b4ed3e4ffd67a96226991ca3.zip
Prefer plusp/minusp to cl-plusp/cl-minusp
* lisp/dired.el (dired--move-to-next-line): * lisp/emacs-lisp/ert.el (ert-run-tests-batch, ert-face-for-stats): * lisp/emacs-lisp/pp.el (pp--format-definition): * lisp/gnus/gnus-icalendar.el (gnus-icalendar-event--org-timestamp): * lisp/ibuffer.el (ibuffer-compile-format, ibuffer--format-title) (ibuffer--format-summary): * lisp/image-mode.el (image-transform-set-percent): * lisp/international/emoji.el (emoji--list-generate, emoji--read-emoji): * lisp/progmodes/ebrowse.el (ebrowse-set-tree-indentation) (ebrowse-set-member-buffer-column-width) (ebrowse-cyclic-display-next/previous-member-list) (ebrowse-draw-member-short-fn) (ebrowse-switch-member-buffer-to-sibling-class, ebrowse-push-position): * lisp/textmodes/dns-mode.el (dns-mode-reverse-and-expand-ipv6): * test/lisp/emacs-lisp/bytecomp-tests.el (bytecomp-tests--not-writable-directory) (bytecomp-tests--dest-mountpoint) (bytecomp-tests--target-file-no-directory): * test/lisp/emacs-lisp/cl-seq-tests.el (cl-member-if-test) (cl-member-if-not-test, cl-assoc-if-not-test, cl-rassoc-if-test) (cl-rassoc-if-not-test): * test/src/emacs-module-tests.el (mod-test-add-nanosecond/valid): Prefer plusp and minusp to cl-plusp and cl-minusp.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/emacs-module-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el
index 03ab50d5adb..fa585b48df7 100644
--- a/test/src/emacs-module-tests.el
+++ b/test/src/emacs-module-tests.el
@@ -376,7 +376,7 @@ Interactively, you can try hitting \\[keyboard-quit] to quit."
376 (should (consp result)) 376 (should (consp result))
377 (should (integerp (car result))) 377 (should (integerp (car result)))
378 (should (integerp (cdr result))) 378 (should (integerp (cdr result)))
379 (should (cl-plusp (cdr result))) 379 (should (plusp (cdr result)))
380 (should (time-equal-p result desired-result)))))) 380 (should (time-equal-p result desired-result))))))
381 381
382(ert-deftest mod-test-add-nanosecond/nil () 382(ert-deftest mod-test-add-nanosecond/nil ()