Skip to content

Commit

Permalink
Fix spec
Browse files Browse the repository at this point in the history
  • Loading branch information
ggetz committed Nov 13, 2023
1 parent 21c64e6 commit e206e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/engine/Specs/Scene/Model/pickModelSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ describe("Scene/Model/pickModel", function () {

const result = new Cartesian3();
const expected = new Cartesian3(0.5, 0, 0.5);
const returned = pickModel(model, ray, scene.frameState, true, result);
const returned = pickModel(model, ray, scene.frameState, result);
expect(result).toEqualEpsilon(expected, CesiumMath.EPSILON12);
expect(returned).toBe(result);
});
Expand Down

0 comments on commit e206e8b

Please sign in to comment.