From dbae38efc22e117c20f6cd9bfd8300d692055c70 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=93scar=20Fuentes?= Date: Mon, 12 Aug 2019 16:22:34 +0200 Subject: [PATCH] * lisp/password-cache.el: adapt test to change in password-in-cache-p --- test/lisp/password-cache-tests.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"))))) -- 2.39.2