summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-07-15 21:19:23 +0200
committerClaude Paroz <claude@2xlibre.net>2012-07-15 21:19:23 +0200
commit35ddeee45573de57ae3c791bf36496b4a7028ddf (patch)
treea18b334ee499bb1cc41ab72180d1c9884cd3d07d
parentcdcdd131da950741fa74debc21bef8632fd3c684 (diff)
Removed debugging line left in previous commit
-rw-r--r--django/contrib/gis/tests/test_geoforms.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/contrib/gis/tests/test_geoforms.py b/django/contrib/gis/tests/test_geoforms.py
index 79a3ae85a2..ed851df0d2 100644
--- a/django/contrib/gis/tests/test_geoforms.py
+++ b/django/contrib/gis/tests/test_geoforms.py
@@ -71,7 +71,6 @@ class GeometryFieldTest(unittest.TestCase):
for wkt in ('POINT(5 23)', 'MULTIPOLYGON(((0 0, 0 1, 1 1, 1 0, 0 0)))', 'LINESTRING(0 0, 1 1)'):
self.assertEqual(GEOSGeometry(wkt), fld.to_python(wkt))
# but raises a ValidationError for any other string
- import pdb; pdb.set_trace()
for wkt in ('POINT(5)', 'MULTI POLYGON(((0 0, 0 1, 1 1, 1 0, 0 0)))', 'BLAH(0 0, 1 1)'):
self.assertRaises(forms.ValidationError, fld.to_python, wkt)