diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/password-cache-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/password-cache-tests.el b/test/lisp/password-cache-tests.el index bb8064d4c69..1abb546113e 100644 --- a/test/lisp/password-cache-tests.el +++ b/test/lisp/password-cache-tests.el | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | (ert-deftest password-cache-tests-add-and-remove () | 29 | (ert-deftest password-cache-tests-add-and-remove () |
| 30 | (let ((password-data (copy-hash-table password-data))) | 30 | (let ((password-data (copy-hash-table password-data))) |
| 31 | (password-cache-add "foo" "bar") | 31 | (password-cache-add "foo" "bar") |
| 32 | (should (equal (password-in-cache-p "foo") "bar")) | 32 | (should (eq (password-in-cache-p "foo") t)) |
| 33 | (password-cache-remove "foo") | 33 | (password-cache-remove "foo") |
| 34 | (should (not (password-in-cache-p "foo"))))) | 34 | (should (not (password-in-cache-p "foo"))))) |
| 35 | 35 | ||