diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-01-03 17:37:40 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-01-03 17:37:44 +0100 |
| commit | 84ea85fb90a3914fef9ab74b1f4f5bb919bec068 (patch) | |
| tree | 0d775995a20110adfc38f25771cfd4ab95d24336 | |
| parent | 3fc43c964ef7ab52261ec3a164d66b19f06f5cea (diff) | |
Updated comment about PostGIS bug 2035
PostGIS 2.0.2 has been released on December 3rd 2012, with the
fix included.
| -rw-r--r-- | django/contrib/gis/tests/geoapp/tests.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/django/contrib/gis/tests/geoapp/tests.py b/django/contrib/gis/tests/geoapp/tests.py index 8f2c22e841..a5164d39d1 100644 --- a/django/contrib/gis/tests/geoapp/tests.py +++ b/django/contrib/gis/tests/geoapp/tests.py @@ -295,10 +295,8 @@ class GeoLookupTest(TestCase): self.assertEqual(2, len(qs)) for c in qs: self.assertEqual(True, c.name in cities) - # The left/right lookup tests are known failures on PostGIS 2.0+ - # until the following bug is fixed: - # http://trac.osgeo.org/postgis/ticket/2035 - # TODO: Ensure fixed in 2.0.2, else modify upper bound for version here. + # The left/right lookup tests are known failures on PostGIS 2.0/2.0.1 + # http://trac.osgeo.org/postgis/ticket/2035 if (2, 0, 0) <= connection.ops.spatial_version <= (2, 0, 1): test_left_right_lookups = unittest.expectedFailure(test_left_right_lookups) |
