]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/lisp/autorevert-tests.el (auto-revert--deftest-remote):
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 19 May 2019 11:34:01 +0000 (11:34 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 19 May 2019 11:34:01 +0000 (11:34 +0000)
Do not handle errors.

test/lisp/autorevert-tests.el

index 8cdddf824d8283554476a63bf4d4ab2fe5fcb000..af9edac1bea6679a1286dda8ff8dc8aedf79de2d 100644 (file)
@@ -140,7 +140,6 @@ This expects `auto-revert--messages' to be bound by
   `(ert-deftest ,(intern (concat (symbol-name test) "-remote")) ()
      ,docstring
      :tags '(:expensive-test)
-     (condition-case err
      (let ((temporary-file-directory
            auto-revert-test-remote-temporary-file-directory)
            (auto-revert-remote-files t)
@@ -149,8 +148,7 @@ This expects `auto-revert--messages' to be bound by
        (skip-unless (auto-revert--test-enabled-remote))
        (tramp-cleanup-connection
        (tramp-dissect-file-name temporary-file-directory) nil 'keep-password)
-       (funcall (ert-test-body ert-test)))
-     (error (message "%s" err)))))
+       (funcall (ert-test-body ert-test)))))
 
 (ert-deftest auto-revert-test00-auto-revert-mode ()
   "Check autorevert for a file."