branch: elpa/with-simulated-input
commit 057946280f64de4a4bb0367ec06ad1c6279608d5
Author: Nikita Bloshchanevich <[email protected]>
Commit: Nikita Bloshchanevich <[email protected]>
Greeting test: don't use dynamic forms
---
tests/test-with-simulated-input.el | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/tests/test-with-simulated-input.el
b/tests/test-with-simulated-input.el
index fa3a0d7e1d..568eae2590 100644
--- a/tests/test-with-simulated-input.el
+++ b/tests/test-with-simulated-input.el
@@ -118,10 +118,7 @@
(let ((greeting "hello")
(target "world"))
(expect
- (with-simulated-input
- (list greeting "SPC"
- (list 'insert target)
- "RET")
+ (with-simulated-input (greeting "SPC" (insert target) "RET")
(read-string "Say hello: "))
:to-equal "hello world")))