summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2026-05-04 16:09:10 +0200
committerMichael Albinus <michael.albinus@gmx.de>2026-05-04 16:09:10 +0200
commit9c0a699c59ebe127950cf561b98a40f6e5916a03 (patch)
tree9408dcad8a722fb8d0653e8f93cc12700545248b /test
parentcbc912ed637a62f98a341fd488e948c245a0896f (diff)
Adaot tramp-tests.el
* test/lisp/net/tramp-tests.el (ert-remote-temporary-file-directory): Ensure that it is expanded.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/net/tramp-tests.el12
1 files changed, 7 insertions, 5 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el
index a19a17dcecf..05c3f72229d 100644
--- a/test/lisp/net/tramp-tests.el
+++ b/test/lisp/net/tramp-tests.el
@@ -219,16 +219,13 @@
'(fset 'tramp-gvfs-handler-askquestion
(lambda (_message _choices) '(t nil 0)))))
-(defconst tramp-test-vec
- (and (file-remote-p ert-remote-temporary-file-directory)
- (tramp-dissect-file-name ert-remote-temporary-file-directory))
- "The used `tramp-file-name' structure.")
-
(setq auth-source-cache-expiry nil
auth-source-save-behavior nil
auto-revert-remote-files t
auto-revert-use-notify t
ert-batch-backtrace-right-margin nil
+ ert-remote-temporary-file-directory
+ (expand-file-name ert-remote-temporary-file-directory)
password-cache-expiry nil
remote-file-name-inhibit-cache nil
tramp-allow-unsafe-temporary-files t
@@ -239,6 +236,11 @@
tramp-verbose 0
vc-handled-backends (unless noninteractive vc-handled-backends))
+(defconst tramp-test-vec
+ (and (file-remote-p ert-remote-temporary-file-directory)
+ (tramp-dissect-file-name ert-remote-temporary-file-directory))
+ "The used `tramp-file-name' structure.")
+
(defconst tramp-test-name-prefix "tramp-test"
"Prefix to use for temporary test files.")