From a208f7df6ca795269c4c983b302ecb4e27f0154b Mon Sep 17 00:00:00 2001 From: Tommi Reiman Date: Sun, 13 Aug 2017 14:56:28 +0300 Subject: [PATCH] Remove println --- test/cljc/reitit/core_test.cljc | 1 - 1 file changed, 1 deletion(-) diff --git a/test/cljc/reitit/core_test.cljc b/test/cljc/reitit/core_test.cljc index 2da36f71..b93efa1f 100644 --- a/test/cljc/reitit/core_test.cljc +++ b/test/cljc/reitit/core_test.cljc @@ -89,7 +89,6 @@ (is (= 2 @compile-times)))))) (testing "default compile" (let [router (reitit/router ["/ping" (constantly "ok")])] - (println (reitit/match-by-path router "/ping")) (let [{:keys [handler]} (reitit/match-by-path router "/ping")] (is handler) (is (= "ok" (handler)))))))