We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 7e34bee commit 277b508Copy full SHA for 277b508
tests/src/python/test_qgsgeometry.py
@@ -88,8 +88,8 @@ def testIsEmpty(self):
88
def testVertexIterator(self):
89
g = QgsGeometry.fromWkt('Linestring(11 12, 13 14)')
90
it = g.vertices()
91
- self.assertEqual(next(it), QgsPointV2(11, 12))
92
- self.assertEqual(next(it), QgsPointV2(13, 14))
+ self.assertEqual(next(it), QgsPoint(11, 12))
+ self.assertEqual(next(it), QgsPoint(13, 14))
93
with self.assertRaises(StopIteration):
94
next(it)
95
0 commit comments