branch: elpa/magit
commit a07c415917a4ee7d2830398133d7c1d04e30020c
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    magit-with-test-directory: No longer suppress message
---
 test/magit-tests.el | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/test/magit-tests.el b/test/magit-tests.el
index 1e86dbe98f..f54acf188f 100644
--- a/test/magit-tests.el
+++ b/test/magit-tests.el
@@ -42,9 +42,8 @@
                    (list "-c" "user.email=\"[email protected]\"")
                    magit-git-global-arguments)))
        (condition-case err
-           (cl-letf (((symbol-function #'message) (lambda (&rest _))))
-             (let ((default-directory (file-truename ,dir)))
-               ,@body))
+           (let ((default-directory (file-truename ,dir)))
+             ,@body)
          (error (message "Keeping test directory:\n  %s" ,dir)
                 (signal (car err) (cdr err))))
        (delete-directory ,dir t))))

Reply via email to