diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2022-07-25 17:19:02 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2022-07-25 17:19:02 +0200 |
commit | 4c9d3d199c04c43d3c1b0c7c1a873f22c07dd699 (patch) | |
tree | 498c0bef33e8f8f54ae8210ce3018a4cee09cc40 /test/lisp/net | |
parent | b86569f1302a48d4c402d0cffad75679989f2236 (diff) | |
download | emacs-4c9d3d199c04c43d3c1b0c7c1a873f22c07dd699.tar.gz emacs-4c9d3d199c04c43d3c1b0c7c1a873f22c07dd699.tar.bz2 emacs-4c9d3d199c04c43d3c1b0c7c1a873f22c07dd699.zip |
Fix regexp in tramp-tests.el
* test/lisp/net/tramp-tests.el (tramp--test-enabled): Fix regexp
for Tramp test files.
Diffstat (limited to 'test/lisp/net')
-rw-r--r-- | test/lisp/net/tramp-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index f2ef5201629..4524d56a9bf 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el @@ -204,7 +204,7 @@ being the result.") ;; Remove old test files. (dolist (dir `(,temporary-file-directory ,ert-remote-temporary-file-directory)) - (dolist (file (directory-files dir 'full "^\\(.#\\)?tramp-test")) + (dolist (file (directory-files dir 'full "^\\(\\.#\\)?tramp-test")) (ignore-errors (if (file-directory-p file) (delete-directory file 'recursive) |