Skip to content
This repository has been archived by the owner on Oct 15, 2018. It is now read-only.

Commit

Permalink
fix: relax float boundaries to make ie pass
Browse files Browse the repository at this point in the history
  • Loading branch information
apaleslimghost committed Feb 10, 2016
1 parent 9f3f8d8 commit 3f1afa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function valuesEqual(a, b) {
}

function floatEqual(a, b) {
return Math.abs(a - b) < 1e-10
return Math.abs(a - b) < 1
}

tape.Test.prototype.rangebarValuesEqual = function(a, b, msg, extra) {
Expand Down

0 comments on commit 3f1afa8

Please sign in to comment.