summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Dunck <jdunck@gmail.com>2007-06-25 23:53:43 +0000
committerJeremy Dunck <jdunck@gmail.com>2007-06-25 23:53:43 +0000
commitbea0a500daf95c6d225ca38a0aaa69fab3872f2a (patch)
tree1acbe2e4a94439fecd49f7946e62c21a6d12d223
parentfc779fe55aec84994e7e761c743716ba03484bcc (diff)
gis: Noted test error messages that should be ignored since they're issued by geos on an expected failure.
git-svn-id: http://code.djangoproject.com/svn/django/branches/gis@5541 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-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."