Remove println

This commit is contained in:
Tommi Reiman 2017-08-13 14:56:28 +03:00
parent d74b98af2f
commit a208f7df6c

View file

@ -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)))))))