diff options
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 |
commit | dbae38efc22e117c20f6cd9bfd8300d692055c70 (patch) | |
tree | a05f4b3dddd1bb3b05fc7d8454e2ae85c49073b3 /test/lisp/password-cache-tests.el | |
parent | 88006cf542ed99ca8236c9b61c6b19b732353d6c (diff) | |
download | emacs-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.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 @@ (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"))))) |