summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/contrib/gis/tests/test_geos.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/django/contrib/gis/tests/test_geos.py b/django/contrib/gis/tests/test_geos.py
index b7edaa531b..e2955a8a66 100644
--- a/django/contrib/gis/tests/test_geos.py
+++ b/django/contrib/gis/tests/test_geos.py
@@ -19,11 +19,15 @@ class GeosTest2(unittest.TestCase):
def test0102_errors(self):
"Testing the Error handlers."
+
+ print "\nBEGIN - expecting ParseError; safe to ignore.\n"
for err in errors:
if err.hex:
self.assertRaises(GEOSException, GEOSGeometry, err.wkt, 'hex')
else:
self.assertRaises(GEOSException, GEOSGeometry, err.wkt)
+ print "\nEND - expecting ParseError; safe to ignore.\n"
+
def test02_points(self):
"Testing Point objects."