Revert: Update test.js

This commit is contained in:
2025-11-13 13:03:15 -08:00
parent 70c66de114
commit 86478189e8

View File

@@ -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;
}
};