We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1eda5c commit 1e543e0Copy full SHA for 1e543e0
spec/gl-matrix/common-spec.js
@@ -19,7 +19,7 @@ describe("common", function(){
19
r0 = glMatrix.equals(1.0, 0.0);
20
r1 = glMatrix.equals(1.0, 1.0);
21
r2 = glMatrix.equals(1.0+glMatrix.EPSILON/2, 1.0);
22
- r3 = glMatrix.equals(1.0+glMatrix.EPSILON/2, 1.0, 0.001);
+ r3 = glMatrix.equals(1.0011, 1.0, 0.001);
23
r4 = glMatrix.equals(100.5, 100.7, 0.2);
24
});
25
it("should return false for different numbers", function() { expect(r0).toBe(false); });
0 commit comments