Skip to content

Commit 48d5fbd

Browse files
authored
Fix cider-test-rerun-failed-tests (#3485)
Fixes #3484 This was a bug introduced in 74be055
1 parent 52243cf commit 48d5fbd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cider-test.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -710,11 +710,11 @@ running them."
710710
;; we generate a different message when running individual tests
711711
(cider-test-echo-running ns (car tests))
712712
(cider-test-echo-running ns)))
713-
(let ((retest? (eq :non-passing ns))
714-
(request `("op" ,(cond ((stringp ns) "test")
715-
((eq :project ns) "test-all")
716-
((eq :loaded ns) "test-all")
717-
(retest? "retest")))))
713+
(let* ((retest? (eq :non-passing ns))
714+
(request `("op" ,(cond ((stringp ns) "test")
715+
((eq :project ns) "test-all")
716+
((eq :loaded ns) "test-all")
717+
(retest? "retest")))))
718718
;; we add optional parts of the request only when relevant
719719
(when (and (listp include-selectors) include-selectors)
720720
(setq request (append request `("include" ,include-selectors))))

0 commit comments

Comments
 (0)