diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2022-08-04 11:59:18 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2022-08-04 11:59:18 +0200 |
commit | 87ac0b945f549008d56b42ba5582bbf468891a56 (patch) | |
tree | efac7a44ece27e1a3b7c3c6f74f9e6494b8f2d6e /test | |
parent | f325b091c1589ec67347ac1ba82a1f82a7596093 (diff) | |
download | emacs-87ac0b945f549008d56b42ba5582bbf468891a56.tar.gz emacs-87ac0b945f549008d56b42ba5582bbf468891a56.tar.bz2 emacs-87ac0b945f549008d56b42ba5582bbf468891a56.zip |
Fix Tramp test
* test/lisp/net/tramp-tests.el (tramp-test48-unload):
Ignore autoload functions in `tramp-file-name' structure tests,
since `tramp-file-name-handler' is also autoloaded.
Diffstat (limited to 'test')
-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 63ccd05a263..e2d4ed781bb 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el @@ -7590,7 +7590,7 @@ Since it unloads Tramp, it shall be the last test to run." (should-not (cl--find-class 'tramp-file-name)) (mapatoms (lambda (x) - (and (functionp x) + (and (functionp x) (null (autoloadp (symbol-function x))) (string-match-p "tramp-file-name" (symbol-name x)) (ert-fail (format "Structure function `%s' still exists" x))))) |