summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Porter <jporterbugs@gmail.com>2022-11-25 17:42:57 -0800
committerJim Porter <jporterbugs@gmail.com>2022-11-25 17:45:06 -0800
commit154daf8367b56d8c602e6f9a09c43ce0039db4d9 (patch)
treedd7ab9ed6f5c50d2151d81bf2df8d28cc2d6ccc5
parent7fc0eae28f03601e25e2a60030ae2dc59085c6d2 (diff)
downloademacs-154daf8367b56d8c602e6f9a09c43ce0039db4d9.tar.gz
; * test/lisp/eshell/esh-var-tests.el: Fix incorrect paren placement.
-rw-r--r--test/lisp/eshell/esh-var-tests.el4
1 files 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 \"$<echo hi>\"" "hi"))
+ (eshell-command-result-equal "cat \"$<echo hi>\"" "hi")
(delete-directory temporary-file-directory t))))
(ert-deftest esh-var-test/quoted-interp-concat-cmd ()