aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2014-02-07 16:56:15 +0100
committerMichael Albinus2014-02-07 16:56:15 +0100
commit5a327e991ed404914530fed26d30e215899f9a72 (patch)
tree13ce6efeff807ff63f4449770d1c44066e2bc812
parentcad6dfb67f541abaefb5d0f9784e660f39b9b645 (diff)
downloademacs-5a327e991ed404914530fed26d30e215899f9a72.tar.gz
emacs-5a327e991ed404914530fed26d30e215899f9a72.zip
Remove superfluous argument.
-rw-r--r--test/automated/tramp-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/automated/tramp-tests.el b/test/automated/tramp-tests.el
index 182dc4bdfb7..67f55254da1 100644
--- a/test/automated/tramp-tests.el
+++ b/test/automated/tramp-tests.el
@@ -1153,7 +1153,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
1153 (default-directory tramp-test-temporary-file-directory)) 1153 (default-directory tramp-test-temporary-file-directory))
1154 (unwind-protect 1154 (unwind-protect
1155 (with-temp-buffer 1155 (with-temp-buffer
1156 (write-region "foo" nil tmp-name nil) 1156 (write-region "foo" nil tmp-name)
1157 (should (file-exists-p tmp-name)) 1157 (should (file-exists-p tmp-name))
1158 (shell-command 1158 (shell-command
1159 (format "ls %s" (file-name-nondirectory tmp-name)) (current-buffer)) 1159 (format "ls %s" (file-name-nondirectory tmp-name)) (current-buffer))
@@ -1164,7 +1164,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
1164 1164
1165 (unwind-protect 1165 (unwind-protect
1166 (with-temp-buffer 1166 (with-temp-buffer
1167 (write-region "foo" nil tmp-name nil) 1167 (write-region "foo" nil tmp-name)
1168 (should (file-exists-p tmp-name)) 1168 (should (file-exists-p tmp-name))
1169 (async-shell-command 1169 (async-shell-command
1170 (format "ls %s" (file-name-nondirectory tmp-name)) (current-buffer)) 1170 (format "ls %s" (file-name-nondirectory tmp-name)) (current-buffer))