aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2024-01-20 15:37:28 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2024-01-20 15:37:28 +0100
commit8c250b71c2abcbf579bbcfc131f022cc571fcc13 (patch)
tree5f3bcd02107e0cad561e83d11f1bbe9ccd1e34c6
parent4c8a45b62f9c6c4f9fc2091d18e464775f3a96cd (diff)
compat-tests: Use should-equal
-rw-r--r--compat-tests.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/compat-tests.el b/compat-tests.el
index 44f9228..6477696 100644
--- a/compat-tests.el
+++ b/compat-tests.el
@@ -1332,8 +1332,8 @@
(list (list) (list) (list) (list)))))
(ert-deftest compat-xor ()
- (should (equal (xor 'a nil) 'a))
- (should (equal (xor nil 'b) 'b))
+ (should-equal (xor 'a nil) 'a)
+ (should-equal (xor nil 'b) 'b)
(should-not (xor nil nil))
(should-not (xor 'a 'b)))
@@ -2957,7 +2957,7 @@
(should (directory-name-p dir))
(should (file-directory-p dir)))
(ert-with-temp-file file :buffer buffer
- (should (equal (current-buffer) buffer))
+ (should-equal (current-buffer) buffer)
(should-equal buffer-file-name file)
(should-not (directory-name-p file))
(should (file-readable-p file))