diff options
| author | Jim Porter | 2023-09-17 17:34:20 -0700 |
|---|---|---|
| committer | Jim Porter | 2023-09-17 17:34:20 -0700 |
| commit | 514b70d5a0c73f5c0698494b323dc31dbc854d3a (patch) | |
| tree | e32c996432a82f878355a3d8e058eb02689d5aa8 | |
| parent | a0ed463babaa6301dfe2fecc27e2a6c92eb0d90c (diff) | |
| download | emacs-514b70d5a0c73f5c0698494b323dc31dbc854d3a.tar.gz emacs-514b70d5a0c73f5c0698494b323dc31dbc854d3a.zip | |
; Fix last change
* test/lisp/eshell/eshell-tests.el
(eshell-test/eshell-command/output-buffer/sync): Remove unused
let-binding.
| -rw-r--r-- | test/lisp/eshell/eshell-tests.el | 3 |
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"))) |