From 86478189e856942acb590a2c3af5f7344ba80df8 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Thu, 13 Nov 2025 13:03:15 -0800 Subject: [PATCH] Revert: Update test.js --- tests/2_convex_hull/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }; +