Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
noinia committed Dec 16, 2024
1 parent 71185c7 commit 92e6aee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hgeometry/test/ConvexHull/ConvexHullSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ spec = do
it "JarvisMarch Manual test1" $
(PG $ JarvisMarch.convexHull testPoints)
`shouldBe`
(PG $ uncheckedFromCCWPoints (reverse
(PG $ uncheckedFromCCWPoints . NonEmpty.fromList $ (reverse
[mPoint2 [0,10],mPoint2 [2,20],mPoint2 [6,20]
,mPoint2 [8,11],mPoint2 [8,6],mPoint2 [7,4]
,mPoint2 [5,3],mPoint2 [1,4],mPoint2 [0,5]]))

it "JarvisMarch Manual test2" $
(PG $ JarvisMarch.convexHull testPoints2)
`shouldBe`
(PG $ uncheckedFromCCWPoints (reverse
(PG $ uncheckedFromCCWPoints . NonEmpty.fromList $ (reverse
[ mPoint2 [0,10], mPoint2 [2,20]
, mPoint2 [6,20], mPoint2 [8,11]
, mPoint2 [7,4], mPoint2 [5,3] , mPoint2 [1,4] ]))
Expand Down

0 comments on commit 92e6aee

Please sign in to comment.