diff --git a/tests/2_convex_hull/test.js b/tests/2_convex_hull/test.js index 7f77c63..dc16dc6 100644 --- a/tests/2_convex_hull/test.js +++ b/tests/2_convex_hull/test.js @@ -16,6 +16,6 @@ export default { const hull = await findConvexHull(points); const sortFn = (a, b) => a.x - b.x || a.y - b.y; assert.deepStrictEqual(hull.sort(sortFn), expected.sort(sortFn), "Test Failed: Convex hull points do not match."); - return hull; } }; +