emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/with-simulated-input a30bd8e6e4 129/134: Fix the test for


From: ELPA Syncer
Subject: [nongnu] elpa/with-simulated-input a30bd8e6e4 129/134: Fix the test for variables in KEYS
Date: Mon, 10 Jan 2022 23:00:13 -0500 (EST)

branch: elpa/with-simulated-input
commit a30bd8e6e405fc015ff90c6172739f699347aca4
Author: Ryan C. Thompson <rct@thompsonclan.org>
Commit: Ryan C. Thompson <rct@thompsonclan.org>

    Fix the test for variables in KEYS
    
    Removing the quote ensures that only the warning about an unused
    variable value is generated.
---
 tests/test-with-simulated-input.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tests/test-with-simulated-input.el 
b/tests/test-with-simulated-input.el
index f896424ac6..fbdbc30cc2 100644
--- a/tests/test-with-simulated-input.el
+++ b/tests/test-with-simulated-input.el
@@ -340,12 +340,12 @@ during macro expansion will be caught as well."
            (undesired-input "goodbye"))
        (expect
         (with-simulated-input
-            '((prog1 undesired-input
-                ;; This is the only thing that should actually get
-                ;; inserted.
-                (insert desired-input))
-              undesired-input
-              "RET")
+            ((prog1 undesired-input
+               ;; This is the only thing that should actually get
+               ;; inserted.
+               (insert desired-input))
+             undesired-input
+             "RET")
           (read-string "Enter a string: "))
         :to-equal desired-input))))
 



reply via email to

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