diff options
| author | Óscar Fuentes | 2019-08-12 16:22:34 +0200 |
|---|---|---|
| committer | Óscar Fuentes | 2019-08-12 16:22:34 +0200 |
| commit | dbae38efc22e117c20f6cd9bfd8300d692055c70 (patch) | |
| tree | a05f4b3dddd1bb3b05fc7d8454e2ae85c49073b3 | |
| parent | 88006cf542ed99ca8236c9b61c6b19b732353d6c (diff) | |
| download | emacs-dbae38efc22e117c20f6cd9bfd8300d692055c70.tar.gz emacs-dbae38efc22e117c20f6cd9bfd8300d692055c70.zip | |
* lisp/password-cache.el: adapt test to change in password-in-cache-p
| -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 | ||