We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47aba96 commit c4dafbfCopy full SHA for c4dafbf
src/clj/clojure/test/tap.clj
@@ -78,7 +78,7 @@
78
(defmethod tap-report :pass [data]
79
(t/with-test-out
80
(t/inc-report-counter :pass)
81
- (print-tap-pass (t/testing-vars-str))
+ (print-tap-pass (t/testing-vars-str data))
82
(when (seq t/*testing-contexts*)
83
(print-tap-diagnostic (t/testing-contexts-str)))
84
(when (:message data)
@@ -89,7 +89,7 @@
89
(defmethod tap-report :error [data]
90
91
(t/inc-report-counter :error)
92
- (print-tap-fail (t/testing-vars-str))
+ (print-tap-fail (t/testing-vars-str data))
93
94
95
0 commit comments