Skip to content

Commit 03d113f

Browse files
do not require tags
1 parent 75a7959 commit 03d113f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/main/clojure/clojure/test/generative

src/main/clojure/clojure/test/generative/io.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@
7373
(defmethod console-reporter :ignore [_])
7474
(defmethod console-reporter :test/test
7575
[{:keys [tags msec count] :as m}]
76-
(when (and (tags :end) count)
76+
(when (and (get tags :end) count)
7777
(println (select-keys m [:msec :test/result :name :count]))))
7878
(defmethod console-reporter :test/group
7979
[{:keys [name tags]}]
80-
(when-not (tags :end)
80+
(when-not (get tags :end)
8181
(println (str "\n" name"\n"))))
8282
(defmethod console-reporter :test/library
8383
[{:keys [name]}]

0 commit comments

Comments
 (0)