diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2024-01-20 15:37:28 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2024-01-20 15:37:28 +0100 |
| commit | 8c250b71c2abcbf579bbcfc131f022cc571fcc13 (patch) | |
| tree | 5f3bcd02107e0cad561e83d11f1bbe9ccd1e34c6 /compat-tests.el | |
| parent | 4c8a45b62f9c6c4f9fc2091d18e464775f3a96cd (diff) | |
compat-tests: Use should-equal
Diffstat (limited to 'compat-tests.el')
| -rw-r--r-- | compat-tests.el | 6 |
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)) |
