branch: elpa/lua-mode
commit cf076a67551b5114a8078f767d0ca55e49a2843c
Author: immerrr <[email protected]>
Commit: immerrr <[email protected]>
Replace funcall-interactively -> call-interactively (for Emacs-24.3)
---
test/test-process.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/test-process.el b/test/test-process.el
index bedb11c..5f3870e 100644
--- a/test/test-process.el
+++ b/test/test-process.el
@@ -10,13 +10,13 @@
(it "doesn't hang for an already-running process"
;; Acquire a *lua* repl buffer
(save-current-buffer
- (funcall-interactively #'lua-start-process)
+ (call-interactively #'lua-start-process)
;; Input some text
(with-current-buffer lua-process-buffer
(insert "table.insert"))
(switch-to-buffer (get-buffer-create "*scratch*"))
;; Try restarting the repl buffer
- (funcall-interactively #'lua-start-process)
+ (call-interactively #'lua-start-process)
;; `lua-start-process' shouldn't hang, and it should have switched back.
(expect (current-buffer) :to-be lua-process-buffer))))