1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-17 10:06:13 +00:00

Fix Bug#33568

* test/lisp/net/secrets-tests.el (secrets-test02-collections)
(secrets-test03-items): Do not expect "login" collection to
exist.  (Bug#33568)
This commit is contained in:
Michael Albinus 2018-12-12 10:49:59 +01:00
parent 1691a51094
commit 8c28ac8023

View File

@ -90,10 +90,6 @@
(unwind-protect
(progn
(should (secrets-open-session))
;; There must be at least the collections "Login" and "session".
(should (or (member "Login" (secrets-list-collections))
(member "login" (secrets-list-collections))))
(should (member "session" (secrets-list-collections)))
;; Create a random collection. This asks for a password
@ -160,9 +156,6 @@
;; There shall be no items in the "session" collection.
(should-not (secrets-list-items "session"))
;; There shall be items in the "Login" collection.
(should (or (secrets-list-items "Login")
(secrets-list-items "login")))
;; Create a new item.
(should (setq item-path (secrets-create-item "session" "foo" "secret")))