branch: elpa/with-simulated-input
commit a30bd8e6e405fc015ff90c6172739f699347aca4
Author: Ryan C. Thompson <[email protected]>
Commit: Ryan C. Thompson <[email protected]>
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))))