Skip to content

Commit c52600d

Browse files
authored
Update utils.test.js
1 parent d5707be commit c52600d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/utils.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ test('Vertex Angles counterclockwise', () => {
111111

112112
describe('Surrounds', () => {
113113
test.each([
114-
[[-1, -1], false, "Outside",],
115-
[[1, 1], true, "Inside",],
114+
[[-1, -1], false, 'Outside'],
115+
[[1, 1], true, 'Inside'],
116116
])('${description}',(point, expected, description) => {
117117
expect(BuildingShapeUtils.surrounds(rightTriangle, point)).toBe(expected);
118118
});

0 commit comments

Comments
 (0)