Skip to content

Commit d5707be

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

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/utils.test.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ test('Vertex Angles counterclockwise', () => {
110110
});
111111

112112
describe('Surrounds', () => {
113-
test.each([
114-
[[-1, -1], false, "Outside",],
115-
[[1, 1], true, "Inside",],
116-
])('${description}',(point, expected, description) => {
117-
expect(BuildingShapeUtils.surrounds(rightTriangle, point)).toBe(expected);
118-
});
113+
test.each([
114+
[[-1, -1], false, "Outside",],
115+
[[1, 1], true, "Inside",],
116+
])('${description}',(point, expected, description) => {
117+
expect(BuildingShapeUtils.surrounds(rightTriangle, point)).toBe(expected);
118+
});
119119
});
120120

121121
// test calcRadius

0 commit comments

Comments
 (0)