summaryrefslogtreecommitdiff
path: root/test/lisp/password-cache-tests.el
diff options
context:
space:
mode:
authorÓscar Fuentes <ofv@wanadoo.es>2019-08-12 16:22:34 +0200
committerÓscar Fuentes <ofv@wanadoo.es>2019-08-12 16:22:34 +0200
commitdbae38efc22e117c20f6cd9bfd8300d692055c70 (patch)
treea05f4b3dddd1bb3b05fc7d8454e2ae85c49073b3 /test/lisp/password-cache-tests.el
parent88006cf542ed99ca8236c9b61c6b19b732353d6c (diff)
downloademacs-dbae38efc22e117c20f6cd9bfd8300d692055c70.tar.gz
* lisp/password-cache.el: adapt test to change in password-in-cache-p
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")))))