aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/lisp/eshell/eshell-tests.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/lisp/eshell/eshell-tests.el b/test/lisp/eshell/eshell-tests.el
index 37117e865d3..25c8cfd389c 100644
--- a/test/lisp/eshell/eshell-tests.el
+++ b/test/lisp/eshell/eshell-tests.el
@@ -86,8 +86,7 @@ This test uses a pipeline for the command."
86 "Test that the `eshell-command' function writes to its output buffer." 86 "Test that the `eshell-command' function writes to its output buffer."
87 (skip-unless (executable-find "echo")) 87 (skip-unless (executable-find "echo"))
88 (ert-with-temp-directory eshell-directory-name 88 (ert-with-temp-directory eshell-directory-name
89 (let ((orig-processes (process-list)) 89 (let ((eshell-history-file-name nil))
90 (eshell-history-file-name nil))
91 (eshell-command "*echo 'hi\nbye'") 90 (eshell-command "*echo 'hi\nbye'")
92 (with-current-buffer "*Eshell Command Output*" 91 (with-current-buffer "*Eshell Command Output*"
93 (should (equal (buffer-string) "hi\nbye"))) 92 (should (equal (buffer-string) "hi\nbye")))