summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-12-31 09:42:27 -0500
committerTim Graham <timograham@gmail.com>2017-01-17 20:52:02 -0500
commit997c9f709974ea79d9eb9e83eaf24e7bc0e7f9d4 (patch)
treeef973e5c367bfa4ffff36d4075da9bf67bc5975f /tests
parent19d8e64ac357271e708f6db377975ee85b7e4342 (diff)
Refs #25665 -- Removed deprecated getter/setter of Point.tuple.
Diffstat (limited to 'tests')
-rw-r--r--tests/gis_tests/geos_tests/test_geos.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/gis_tests/geos_tests/test_geos.py b/tests/gis_tests/geos_tests/test_geos.py
index 6a689188d2..4ee3c7309a 100644
--- a/tests/gis_tests/geos_tests/test_geos.py
+++ b/tests/gis_tests/geos_tests/test_geos.py
@@ -1317,14 +1317,6 @@ class GEOSTest(SimpleTestCase, TestDataMixin):
self.assertEqual(p, Point(srid=2774))
@ignore_warnings(category=RemovedInDjango20Warning)
- def test_deprecated_point_tuple_getters_setters(self):
- p = Point(1, 2, 3)
- self.assertEqual(p.get_coords(), (p.x, p.y, p.z))
-
- p.set_coords((3, 2, 1))
- self.assertEqual(p.get_coords(), (3, 2, 1))
-
- @ignore_warnings(category=RemovedInDjango20Warning)
def test_deprecated_cascaded_union(self):
for geom in self.geometries.multipolygons:
mpoly = GEOSGeometry(geom.wkt)