From 216525356d03785d0c20b4a1fcb493f0a802fa1c Mon Sep 17 00:00:00 2001 From: lread Date: Sat, 17 Aug 2024 14:02:39 -0400 Subject: [PATCH] Windows does not like the bullet char Switch to period char. --- test/etaoin/test_report.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/etaoin/test_report.clj b/test/etaoin/test_report.clj index 49b0e8c..0ee21e0 100644 --- a/test/etaoin/test_report.clj +++ b/test/etaoin/test_report.clj @@ -24,6 +24,6 @@ (println (format "=== %s [%s]" test-name platform))))) (defmethod clojure.test/report :begin-testing [{:keys [testing-contexts]}] - (println (format "•••%s %s" - (apply str (repeat (count testing-contexts) "•")) + (println (format "...%s %s" + (apply str (repeat (count testing-contexts) ".")) (first testing-contexts))))