Skip to content

Commit 2ac57dd

Browse files
authored
Apply suggestions from code review
1 parent e4183e1 commit 2ac57dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/test/spatial-types.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ describe('isPoint', () => {
9595
new Point(CARTESIAN_3D_CRS_CODE, 19.24, 100.29),
9696
new Point(0, 19.24, 100.29, 20.22222)
9797
])('isPoint(%s) should be truthy', (point: unknown) => {
98-
expect(isPoint(point)).toBeTruthy()
98+
expect(isPoint(point)).toBe(true)
9999

100100
if (isPoint(point)) {
101101
const typedPoint: Point = point

0 commit comments

Comments
 (0)