diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-02-01 09:34:39 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-02-01 09:34:39 +0100 |
| commit | 8eb84081ada2a1a71ca701c8d3f0db0d4c61ae28 (patch) | |
| tree | 8bde3d68064434033093edd7bab076f9dd90158d | |
| parent | 339944491ce06be8e1a8e7f2027261c90d1f166b (diff) | |
Set bigger maxDiff for ogrinspect tests
| -rw-r--r-- | django/contrib/gis/tests/inspectapp/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/contrib/gis/tests/inspectapp/tests.py b/django/contrib/gis/tests/inspectapp/tests.py index 8fc39db58d..748e4c8a9f 100644 --- a/django/contrib/gis/tests/inspectapp/tests.py +++ b/django/contrib/gis/tests/inspectapp/tests.py @@ -12,6 +12,8 @@ from .models import AllOGRFields class OGRInspectTest(TestCase): + maxDiff = 1024 + def test_poly(self): shp_file = os.path.join(TEST_DATA, 'test_poly', 'test_poly.shp') model_def = ogrinspect(shp_file, 'MyModel') |
