diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-12-12 15:31:33 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-12-12 15:31:33 +0100 |
commit | 0474fda62d79cb7eb250f34f19773c87f283c665 (patch) | |
tree | df7418a6b22fbbfda725c56825ec0290f8e6be39 /lisp/emacs-lisp/ert.el | |
parent | be907b0ba82c2a65e0468d50653cae8a7cf5f16b (diff) | |
parent | 4afef614cd6c93b4d4a57aa5bb211563649abc56 (diff) | |
download | emacs-0474fda62d79cb7eb250f34f19773c87f283c665.tar.gz emacs-0474fda62d79cb7eb250f34f19773c87f283c665.tar.bz2 emacs-0474fda62d79cb7eb250f34f19773c87f283c665.zip |
Merge remote-tracking branch 'savannah/master' into HEAD
Diffstat (limited to 'lisp/emacs-lisp/ert.el')
-rw-r--r-- | lisp/emacs-lisp/ert.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/ert.el b/lisp/emacs-lisp/ert.el index 5f29c2665a3..25237feae2a 100644 --- a/lisp/emacs-lisp/ert.el +++ b/lisp/emacs-lisp/ert.el @@ -274,7 +274,7 @@ DATA is displayed to the user and should state the reason for skipping." It should only be stopped when ran from inside ert--run-test-internal." (when (and (not (symbolp debugger)) ; only run on anonymous debugger (memq error-symbol '(ert-test-failed ert-test-skipped))) - (funcall debugger 'error data))) + (funcall debugger 'error (list error-symbol data)))) (defun ert--special-operator-p (thing) "Return non-nil if THING is a symbol naming a special operator." |