We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75a7959 commit 03d113fCopy full SHA for 03d113f
1 file changed
src/main/clojure/clojure/test/generative/io.clj
@@ -73,11 +73,11 @@
73
(defmethod console-reporter :ignore [_])
74
(defmethod console-reporter :test/test
75
[{:keys [tags msec count] :as m}]
76
- (when (and (tags :end) count)
+ (when (and (get tags :end) count)
77
(println (select-keys m [:msec :test/result :name :count]))))
78
(defmethod console-reporter :test/group
79
[{:keys [name tags]}]
80
- (when-not (tags :end)
+ (when-not (get tags :end)
81
(println (str "\n" name"\n"))))
82
(defmethod console-reporter :test/library
83
[{:keys [name]}]
0 commit comments