]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix last change
authorJim Porter <jporterbugs@gmail.com>
Mon, 18 Sep 2023 00:34:20 +0000 (17:34 -0700)
committerJim Porter <jporterbugs@gmail.com>
Mon, 18 Sep 2023 00:34:20 +0000 (17:34 -0700)
* test/lisp/eshell/eshell-tests.el
(eshell-test/eshell-command/output-buffer/sync): Remove unused
let-binding.

test/lisp/eshell/eshell-tests.el

index 37117e865d3a32e511ea5b26de15622a05522d00..25c8cfd389c250b8a90d9580df5d0d5b47ec20fd 100644 (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")))