Commit 0b2fef5d authored by Justin Bronn's avatar Justin Bronn
Browse files

Fixed brittle test case for `GEOSGeometry.valid_reason`.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14476 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 6c85a444
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"