From bea0a500daf95c6d225ca38a0aaa69fab3872f2a Mon Sep 17 00:00:00 2001 From: Jeremy Dunck Date: Mon, 25 Jun 2007 23:53:43 +0000 Subject: [PATCH] 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 --- django/contrib/gis/tests/test_geos.py | 4 ++++ 1 file changed, 4 insertions(+) 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."