diff --git a/test/clojure_infix/core_test.clj b/test/clojure_infix/core_test.clj index c534774..d9e8e46 100644 --- a/test/clojure_infix/core_test.clj +++ b/test/clojure_infix/core_test.clj @@ -3,5 +3,5 @@ (:use [clojure.test])) (deftest replace-me ;; FIXME: write ; TODO: more tests!!!!! - (= (load-infix-string (str 0.00000391664))) - (= 3 (load-infix-string "max(2,3)"))) + (is (= 0.00000391664 (load-infix-string (str 0.00000391664)))) + (is (= 3 (load-infix-string "max(2,3)"))))