Skip to content

Commit 7ccc872

Browse files
committed
Tests: fixed a function name.
1 parent 3ab183d commit 7ccc872

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/hyperspace/test/geometry.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@
3030
(vector-length [10, 10]) => (almost= 14.142135623730951)
3131
(vector-length [1.23, 10.32]) => (almost= 10.393040940937354))
3232

33-
(facts "about normilize-vector function"
34-
(cartesian->polar (normilize-vector [10, 10]))
33+
(facts "about normalize-vector function"
34+
(cartesian->polar (normalize-vector [10, 10]))
3535
=>
3636
(just [(almost= (-> [10, 10] cartesian->polar first))
3737
(almost= 1.0)])
3838

39-
(cartesian->polar (normilize-vector [1.23, 10.32]))
39+
(cartesian->polar (normalize-vector [1.23, 10.32]))
4040
=>
4141
(just [(almost= (-> [1.23, 10.32] cartesian->polar first))
4242
(almost= 1.0)]))

0 commit comments

Comments
 (0)