From 154daf8367b56d8c602e6f9a09c43ce0039db4d9 Mon Sep 17 00:00:00 2001 From: Jim Porter Date: Fri, 25 Nov 2022 17:42:57 -0800 Subject: [PATCH] ; * test/lisp/eshell/esh-var-tests.el: Fix incorrect paren placement. --- test/lisp/eshell/esh-var-tests.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 () -- 2.39.5