]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Bug#32147
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 15 Jul 2018 07:47:08 +0000 (09:47 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 15 Jul 2018 07:47:08 +0000 (09:47 +0200)
* test/lisp/net/secrets-tests.el (secrets-test02-collections)
(secrets-test03-items): Test for both "Login" or "login"
collection.  (Bug#32147)

test/lisp/net/secrets-tests.el

index 9aa79dab0ebf97a87a8896fd82c3896e1e9fbe7b..de3ce731bec0496b6acae64b04c2d33282f03e60 100644 (file)
@@ -92,7 +92,8 @@
        (should (secrets-open-session))
 
        ;; There must be at least the collections "Login" and "session".
-       (should (member "Login" (secrets-list-collections)))
+       (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 (secrets-list-items "Login"))
+       (should (or (secrets-list-items "Login")
+                    (secrets-list-items "login")))
 
        ;; Create a new item.
        (should (setq item-path (secrets-create-item "session" "foo" "secret")))