Skip to content

Commit a9eaaca

Browse files
committed
try fix ci
1 parent 50df2b5 commit a9eaaca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/modules/core/lib/pick-layers.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,8 +816,9 @@ test('pickingTest#unproject3D', async t => {
816816

817817
let pickInfo = deck.pickObject({x: 250, y: 275, unproject3D: true});
818818
t.is(pickInfo.object, VIEW_STATE, 'object is picked');
819+
t.comment(`pickInfo.coordinate: ${pickInfo.coordinate}`);
819820
t.ok(
820-
equals(pickInfo.coordinate, [VIEW_STATE.longitude, VIEW_STATE.latitude, 1000], 1e-7),
821+
equals(pickInfo.coordinate, [VIEW_STATE.longitude, VIEW_STATE.latitude, 1000], 0.0001),
821822
'unprojects to 3D coordinate'
822823
);
823824

0 commit comments

Comments
 (0)