diff options
| -rw-r--r-- | oni/home/config/pop-os/emacs.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/oni/home/config/pop-os/emacs.el b/oni/home/config/pop-os/emacs.el index 1db27a0..f8c76ee 100644 --- a/oni/home/config/pop-os/emacs.el +++ b/oni/home/config/pop-os/emacs.el @@ -97,7 +97,11 @@ (let ((pick (transient-arg-value "--pick" args)) (fail (transient-arg-value "--stop-on-failure" args)) (brand (transient-arg-value "--brand=" args))) - (artisan--test-internal pick (or brand "chanced") "punt" fail))) + (artisan--test-internal pick (or brand "chanced") + (if (string= brand "punt") + "chanced" + "punt") + fail))) (defvar artisan--test-last-file nil "The last testing commnand that was run in the test buffer. |
