We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab183d commit 7ccc872Copy full SHA for 7ccc872
1 file changed
test/hyperspace/test/geometry.clj
@@ -30,13 +30,13 @@
30
(vector-length [10, 10]) => (almost= 14.142135623730951)
31
(vector-length [1.23, 10.32]) => (almost= 10.393040940937354))
32
33
-(facts "about normilize-vector function"
34
- (cartesian->polar (normilize-vector [10, 10]))
+(facts "about normalize-vector function"
+ (cartesian->polar (normalize-vector [10, 10]))
35
=>
36
(just [(almost= (-> [10, 10] cartesian->polar first))
37
(almost= 1.0)])
38
39
- (cartesian->polar (normilize-vector [1.23, 10.32]))
+ (cartesian->polar (normalize-vector [1.23, 10.32]))
40
41
(just [(almost= (-> [1.23, 10.32] cartesian->polar first))
42
(almost= 1.0)]))
0 commit comments