Fixed brittle test case for `GEOSGeometry.valid_reason`.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14476 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Justin Bronn 2010-11-06 16:41:53 +00:00
parent 6c85a44416
commit 0b2fef5dd3
1 changed files with 1 additions and 1 deletions

View File

@ -934,7 +934,7 @@ class GEOSTest(unittest.TestCase, TestDataMixin):
self.assert_(not g.valid)
self.assert_(isinstance(g.valid_reason, basestring))
self.assertEqual(g.valid_reason, "Too few points in geometry component[0 0]")
self.assert_(g.valid_reason.startswith("Too few points in geometry component"))
print "\nEND - expecting GEOS_NOTICE; safe to ignore.\n"