]> git.eshelyaron.com Git - emacs.git/commitdiff
; * test/lisp/eshell/esh-var-tests.el: Fix incorrect paren placement.
authorJim Porter <jporterbugs@gmail.com>
Sat, 26 Nov 2022 01:42:57 +0000 (17:42 -0800)
committerJim Porter <jporterbugs@gmail.com>
Sat, 26 Nov 2022 01:45:06 +0000 (17:45 -0800)
test/lisp/eshell/esh-var-tests.el

index 245a8e6a26bf939fd76cb244a968c50521d84001..96fde026a544e8d690194993242ca3fec9ecea42 100644 (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 ()