We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f2c62b commit eac1499Copy full SHA for eac1499
src/koan_engine/koans.clj
@@ -23,12 +23,10 @@
23
24
(defn tests-pass? [dojo-path file-path]
25
(u/with-dojo [dojo-path]
26
- (print "Considering" file-path "...")
+ (print "Considering" (str file-path "..."))
27
(flush)
28
(try (load-file file-path)
29
- (do
30
- (println "ok")
31
- true)
+ (do (println) true)
32
(catch Exception e
33
(println)
34
(let [actual-error (or (.getCause e) e)
@@ -39,7 +37,7 @@
39
37
line (when-let [groups (first (re-seq #"^\[LINE (\d+)\] "
40
38
message))]
41
(last groups))]
42
- (println "Problem in"
+ (println "\nNow meditate upon"
43
(str file-path
44
(when line (str ":" line))))
45
(println "---------------------")
0 commit comments