From 514b70d5a0c73f5c0698494b323dc31dbc854d3a Mon Sep 17 00:00:00 2001 From: Jim Porter Date: Sun, 17 Sep 2023 17:34:20 -0700 Subject: [PATCH] ; Fix last change * test/lisp/eshell/eshell-tests.el (eshell-test/eshell-command/output-buffer/sync): Remove unused let-binding. --- test/lisp/eshell/eshell-tests.el | 3 +-- 1 file changed, 1 insertion(+), 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." "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"))) -- 2.39.5