Skip to content

Commit eac1499

Browse files
committed
Touch up some formatting & messaging
1 parent 7f2c62b commit eac1499

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/koan_engine/koans.clj

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,10 @@
2323

2424
(defn tests-pass? [dojo-path file-path]
2525
(u/with-dojo [dojo-path]
26-
(print "Considering" file-path "...")
26+
(print "Considering" (str file-path "..."))
2727
(flush)
2828
(try (load-file file-path)
29-
(do
30-
(println "ok")
31-
true)
29+
(do (println) true)
3230
(catch Exception e
3331
(println)
3432
(let [actual-error (or (.getCause e) e)
@@ -39,7 +37,7 @@
3937
line (when-let [groups (first (re-seq #"^\[LINE (\d+)\] "
4038
message))]
4139
(last groups))]
42-
(println "Problem in"
40+
(println "\nNow meditate upon"
4341
(str file-path
4442
(when line (str ":" line))))
4543
(println "---------------------")

0 commit comments

Comments
 (0)