]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Bug#33568
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 12 Dec 2018 09:49:59 +0000 (10:49 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 12 Dec 2018 09:49:59 +0000 (10:49 +0100)
* test/lisp/net/secrets-tests.el (secrets-test02-collections)
(secrets-test03-items): Do not expect "login" collection to
exist.  (Bug#33568)

test/lisp/net/secrets-tests.el

index de3ce731bec0496b6acae64b04c2d33282f03e60..d34b0021952fc9bf7595cc62d9deede95bb5891c 100644 (file)
   (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
 
        ;; 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")))