summaryrefslogtreecommitdiff
path: root/test/lisp/password-cache-tests.el
diff options
context:
space:
mode:
Diffstat (limited to 'test/lisp/password-cache-tests.el')
-rw-r--r--test/lisp/password-cache-tests.el2
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 @@
(ert-deftest password-cache-tests-add-and-remove ()
(let ((password-data (copy-hash-table password-data)))
(password-cache-add "foo" "bar")
- (should (equal (password-in-cache-p "foo") "bar"))
+ (should (eq (password-in-cache-p "foo") t))
(password-cache-remove "foo")
(should (not (password-in-cache-p "foo")))))