]> git.eshelyaron.com Git - emacs.git/commitdiff
Suggest alternative reason for ERT test duplication error
authorMattias Engdegård <mattiase@acm.org>
Fri, 3 Nov 2023 17:06:04 +0000 (18:06 +0100)
committerMattias Engdegård <mattiase@acm.org>
Fri, 3 Nov 2023 17:06:04 +0000 (18:06 +0100)
* lisp/emacs-lisp/ert.el (ert-set-test):
Amend error message; maybe the redefinition was caused by a file
loaded twice (bug#66782).

Suggested by Xiyue Deng.

lisp/emacs-lisp/ert.el

index d727bc94ec5459d9ea0c232684fa1e58c192e97d..61d8341bdad9cbf2e5807f7d02df9068b50ec946 100644 (file)
@@ -152,7 +152,7 @@ mode.")
   (when (and noninteractive (get symbol 'ert--test))
     ;; Make sure duplicated tests are discovered since the older test would
     ;; be ignored silently otherwise.
-    (error "Test `%s' redefined" symbol))
+    (error "Test `%s' redefined (or loaded twice)" symbol))
   (define-symbol-prop symbol 'ert--test definition)
   definition)