From e57d04f607245c67c62abe1c255625097ac84a27 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 19 Feb 2016 21:09:23 +0200 Subject: [PATCH] Fix other tests. --- test/uxbox/util/geom_tests.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/uxbox/util/geom_tests.cljs b/test/uxbox/util/geom_tests.cljs index 8511a6c1c..c89fd3708 100644 --- a/test/uxbox/util/geom_tests.cljs +++ b/test/uxbox/util/geom_tests.cljs @@ -37,10 +37,10 @@ (t/is (= (:y p3) 3)) (t/is (gpt/point? p3)))) -(t/deftest point-substract-test +(t/deftest point-subtract-test (let [p1 (gpt/point 3 3) p2 (gpt/point 2 2) - p3 (gpt/substract p1 p2)] + p3 (gpt/subtract p1 p2)] (t/is (= (:x p3) 1)) (t/is (= (:y p3) 1)) (t/is (gpt/point? p3)))) @@ -97,8 +97,8 @@ (gmt/rotate 10))] (t/is (= @m [0.984807753012208 - -0.17364817766693033 0.17364817766693033 + -0.17364817766693033 0.984807753012208 0 0]))))