aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMichael Albinus2018-01-04 12:58:42 +0100
committerMichael Albinus2018-01-04 12:58:42 +0100
commit1cc7bc0f63ab118fda55aa40fa4b571a7c94393e (patch)
tree51e629b8985c1e2fe68b4f7803f2cde22177cea1 /test
parent13d384820d820d76702ca4a5152011006d1a57a0 (diff)
downloademacs-1cc7bc0f63ab118fda55aa40fa4b571a7c94393e.tar.gz
emacs-1cc7bc0f63ab118fda55aa40fa4b571a7c94393e.zip
Improve backward compatibility in tramp-archive
* lisp/net/tramp-archive.el (tramp-archive-handle-temporary-file-directory): Use `tramp-compat-temporary-file-directory'. * test/lisp/net/tramp-archive-tests.el (tramp-archive-test37-make-nearby-temp-file): Wrap `temporary-file-directory' call with `with-no-warnings'.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/net/tramp-archive-tests.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lisp/net/tramp-archive-tests.el b/test/lisp/net/tramp-archive-tests.el
index 85be2dc6230..149ed370432 100644
--- a/test/lisp/net/tramp-archive-tests.el
+++ b/test/lisp/net/tramp-archive-tests.el
@@ -699,7 +699,8 @@ This tests also `file-executable-p', `file-writable-p' and `set-file-modes'."
699 tmp-file) 699 tmp-file)
700 ;; The file archive shall know a temporary file directory. It is 700 ;; The file archive shall know a temporary file directory. It is
701 ;; not in the archive itself. 701 ;; not in the archive itself.
702 (should (stringp (with-no-warnings (temporary-file-directory)))) 702 (should
703 (stringp (with-no-warnings (with-no-warnings (temporary-file-directory)))))
703 (should-not 704 (should-not
704 (tramp-archive-file-name-p (with-no-warnings (temporary-file-directory)))) 705 (tramp-archive-file-name-p (with-no-warnings (temporary-file-directory))))
705 706