From 8eb84081ada2a1a71ca701c8d3f0db0d4c61ae28 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Fri, 1 Feb 2013 09:34:39 +0100 Subject: [PATCH] Set bigger maxDiff for ogrinspect tests --- django/contrib/gis/tests/inspectapp/tests.py | 2 ++ 1 file changed, 2 insertions(+) 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')