emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 02db06f 1/2: Fix Bug#32147


From: Michael Albinus
Subject: [Emacs-diffs] master 02db06f 1/2: Fix Bug#32147
Date: Sun, 15 Jul 2018 03:47:57 -0400 (EDT)

branch: master
commit 02db06fc8ebc06519088505b033fd6819a71bef8
Author: Michael Albinus <address@hidden>
Commit: Michael Albinus <address@hidden>

    Fix Bug#32147
    
    * 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 | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/test/lisp/net/secrets-tests.el b/test/lisp/net/secrets-tests.el
index 9aa79da..de3ce73 100644
--- a/test/lisp/net/secrets-tests.el
+++ b/test/lisp/net/secrets-tests.el
@@ -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
@@ -160,7 +161,8 @@
        ;; 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")))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]