diff options
| author | Justin Bronn <jbronn@gmail.com> | 2012-10-05 14:55:15 -0700 |
|---|---|---|
| committer | Justin Bronn <jbronn@gmail.com> | 2012-10-05 14:55:15 -0700 |
| commit | c1b06c8137d82ab34204f62aa4324335b1fd9a23 (patch) | |
| tree | 30e0ffb20b1560fa7caaede5cc2d121c735d595b | |
| parent | db78086b4540f968620ffe465174d7094267f04b (diff) | |
Lowered tolerance to fix failing distance test.
| -rw-r--r-- | django/contrib/gis/tests/distapp/tests.py | 2 |
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. |
