From: Jim Porter Date: Sat, 26 Nov 2022 01:42:57 +0000 (-0800) Subject: ; * test/lisp/eshell/esh-var-tests.el: Fix incorrect paren placement. X-Git-Tag: emacs-29.0.90~1498 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=154daf8367b56d8c602e6f9a09c43ce0039db4d9;p=emacs.git ; * test/lisp/eshell/esh-var-tests.el: Fix incorrect paren placement. --- diff --git a/test/lisp/eshell/esh-var-tests.el b/test/lisp/eshell/esh-var-tests.el index 245a8e6a26b..96fde026a54 100644 --- a/test/lisp/eshell/esh-var-tests.el +++ b/test/lisp/eshell/esh-var-tests.el @@ -289,7 +289,7 @@ inside double-quotes" (eshell-command-result-equal "echo \"$#eshell-test-value\"" "1") (eshell-command-result-equal "echo \"$#eshell-test-value[foo]\"" - "3")) + "3"))) (ert-deftest esh-var-test/quoted-interp-lisp () "Interpolate Lisp form evaluation inside double-quotes" @@ -316,7 +316,7 @@ inside double-quotes" (let ((temporary-file-directory (file-name-as-directory (make-temp-file "esh-vars-tests" t)))) (unwind-protect - (eshell-command-result-equal "cat \"$\"" "hi")) + (eshell-command-result-equal "cat \"$\"" "hi") (delete-directory temporary-file-directory t)))) (ert-deftest esh-var-test/quoted-interp-concat-cmd ()