0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 07:50:43 -05:00

Fix other tests.

This commit is contained in:
Andrey Antukh 2016-02-19 21:09:23 +02:00
parent 747c9b45aa
commit e57d04f607

View file

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