Created
June 17, 2013 17:53
-
-
Save justinvdm/5798785 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/go/base/static/js/test/tests/components/plumbing/endpoints.test.js b/go/base/static/js/test/tests/components/plumbing/endpoints.test.js | |
index 8a2c2aa..21bc7d5 100644 | |
--- a/go/base/static/js/test/tests/components/plumbing/endpoints.test.js | |
+++ b/go/base/static/js/test/tests/components/plumbing/endpoints.test.js | |
@@ -325,7 +325,7 @@ describe("go.components.plumbing (endpoints)", function() { | |
var assertAlignment = function() { | |
var expected = Array.prototype.slice.call(arguments); | |
endpoints.each(function(e, i) { | |
- assert.closeTo(e.t, expected[i], 0.0000001); | |
+ assert.closeTo(e.t, expected[i], 0.01); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment