; * test/lisp/eshell/esh-var-tests.el: Fix incorrect paren placement.
This commit is contained in:
parent
7fc0eae28f
commit
154daf8367
1 changed files with 2 additions and 2 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Add table
Reference in a new issue