; * test/lisp/eshell/esh-var-tests.el: Fix incorrect paren placement.

This commit is contained in:
Jim Porter 2022-11-25 17:42:57 -08:00
parent 7fc0eae28f
commit 154daf8367

View file

@ -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 ()