diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/net/tramp-tests.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index b9562c1befc..fe927bb25fd 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el | |||
| @@ -119,7 +119,6 @@ eval properly in `should', `should-not' or `should-error'. BODY | |||
| 119 | shall not contain a timeout." | 119 | shall not contain a timeout." |
| 120 | (declare (indent 1) (debug (natnump body))) | 120 | (declare (indent 1) (debug (natnump body))) |
| 121 | `(let ((tramp-verbose ,verbose) | 121 | `(let ((tramp-verbose ,verbose) |
| 122 | (tramp-message-show-message t) | ||
| 123 | (tramp-debug-on-error t) | 122 | (tramp-debug-on-error t) |
| 124 | (debug-ignored-errors | 123 | (debug-ignored-errors |
| 125 | (cons "^make-symbolic-link not supported$" debug-ignored-errors))) | 124 | (cons "^make-symbolic-link not supported$" debug-ignored-errors))) |
| @@ -932,7 +931,7 @@ This tests also `file-directory-p' and `file-accessible-directory-p'." | |||
| 932 | (make-directory tmp-name1) | 931 | (make-directory tmp-name1) |
| 933 | (should (file-directory-p tmp-name1)) | 932 | (should (file-directory-p tmp-name1)) |
| 934 | (should (file-accessible-directory-p tmp-name1)) | 933 | (should (file-accessible-directory-p tmp-name1)) |
| 935 | (should-error (make-directory tmp-name2) :type 'file-error) | 934 | (should-error (make-directory tmp-name2)) |
| 936 | (make-directory tmp-name2 'parents) | 935 | (make-directory tmp-name2 'parents) |
| 937 | (should (file-directory-p tmp-name2)) | 936 | (should (file-directory-p tmp-name2)) |
| 938 | (should (file-accessible-directory-p tmp-name2))) | 937 | (should (file-accessible-directory-p tmp-name2))) |
| @@ -953,7 +952,7 @@ This tests also `file-directory-p' and `file-accessible-directory-p'." | |||
| 953 | ;; Delete non-empty directory. | 952 | ;; Delete non-empty directory. |
| 954 | (make-directory tmp-name) | 953 | (make-directory tmp-name) |
| 955 | (write-region "foo" nil (expand-file-name "bla" tmp-name)) | 954 | (write-region "foo" nil (expand-file-name "bla" tmp-name)) |
| 956 | (should-error (delete-directory tmp-name) :type 'file-error) | 955 | (should-error (delete-directory tmp-name)) |
| 957 | (delete-directory tmp-name 'recursive) | 956 | (delete-directory tmp-name 'recursive) |
| 958 | (should-not (file-directory-p tmp-name)))) | 957 | (should-not (file-directory-p tmp-name)))) |
| 959 | 958 | ||