branch: elpa/with-simulated-input
commit ef9d5164cacfa27e3ec1ed5b9e00787ac28eb172
Author: Ryan C. Thompson <[email protected]>
Commit: Ryan C. Thompson <[email protected]>

    Fix interpolation test
---
 tests/test-with-simulated-input.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/test-with-simulated-input.el 
b/tests/test-with-simulated-input.el
index 0e4907ae96..e42d378713 100644
--- a/tests/test-with-simulated-input.el
+++ b/tests/test-with-simulated-input.el
@@ -170,10 +170,10 @@
       (let ((my-key-sequence "hello")
             (my-lisp-form '(insert " world")))
         (expect
-         (with-simulated-input (list
-                                my-key-sequence
-                                my-lisp-form
-                                "RET")
+         (with-simulated-input
+             '(my-key-sequence
+               (eval my-lisp-form)
+               "RET")
            (read-string "Enter a string: "))
          :to-equal "hello world")))))
 

Reply via email to