1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-03 06:00:50 -08:00

; Fix last change

* test/lisp/eshell/eshell-tests.el
(eshell-test/eshell-command/output-buffer/sync): Remove unused
let-binding.
This commit is contained in:
Jim Porter 2023-09-17 17:34:20 -07:00
parent a0ed463bab
commit 514b70d5a0

View file

@ -86,8 +86,7 @@ This test uses a pipeline for the command."
"Test that the `eshell-command' function writes to its output buffer."
(skip-unless (executable-find "echo"))
(ert-with-temp-directory eshell-directory-name
(let ((orig-processes (process-list))
(eshell-history-file-name nil))
(let ((eshell-history-file-name nil))
(eshell-command "*echo 'hi\nbye'")
(with-current-buffer "*Eshell Command Output*"
(should (equal (buffer-string) "hi\nbye")))