Skip to content

Commit 1e543e0

Browse files
psnettoji
authored andcommitted
fix
1 parent f1eda5c commit 1e543e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/gl-matrix/common-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe("common", function(){
1919
r0 = glMatrix.equals(1.0, 0.0);
2020
r1 = glMatrix.equals(1.0, 1.0);
2121
r2 = glMatrix.equals(1.0+glMatrix.EPSILON/2, 1.0);
22-
r3 = glMatrix.equals(1.0+glMatrix.EPSILON/2, 1.0, 0.001);
22+
r3 = glMatrix.equals(1.0011, 1.0, 0.001);
2323
r4 = glMatrix.equals(100.5, 100.7, 0.2);
2424
});
2525
it("should return false for different numbers", function() { expect(r0).toBe(false); });

0 commit comments

Comments
 (0)