summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Bronn <jbronn@gmail.com>2012-10-05 14:55:15 -0700
committerJustin Bronn <jbronn@gmail.com>2012-10-05 14:55:15 -0700
commitc1b06c8137d82ab34204f62aa4324335b1fd9a23 (patch)
tree30e0ffb20b1560fa7caaede5cc2d121c735d595b
parentdb78086b4540f968620ffe465174d7094267f04b (diff)
Lowered tolerance to fix failing distance test.
-rw-r--r--django/contrib/gis/tests/distapp/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/gis/tests/distapp/tests.py b/django/contrib/gis/tests/distapp/tests.py
index bf075add6c..5574b42738 100644
--- a/django/contrib/gis/tests/distapp/tests.py
+++ b/django/contrib/gis/tests/distapp/tests.py
@@ -324,7 +324,7 @@ class DistanceTest(TestCase):
else:
qs = Interstate.objects.length()
if oracle: tol = 2
- else: tol = 5
+ else: tol = 3
self.assertAlmostEqual(len_m1, qs[0].length.m, tol)
# Now doing length on a projected coordinate system.