diff --git a/docker/integration-tests/test_integration_qgis.py b/docker/integration-tests/test_integration_qgis.py index cfd21ab8..d1ccf1cb 100644 --- a/docker/integration-tests/test_integration_qgis.py +++ b/docker/integration-tests/test_integration_qgis.py @@ -47,7 +47,7 @@ def test_many_points(self): def test_load_layer(self): uri = QgsDataSourceUri() uri.setParam("service", "wfs") - uri.setParam("typename", "tests_points") + uri.setParam("typename", "tests.point_2056_10fields") uri.setParam("url", ROOT_URL) layer = QgsVectorLayer(uri.uri(), "point", "OAPIF") self.assertTrue(layer.isValid()) @@ -70,7 +70,7 @@ def test_load_layer(self): def test_load_with_basic_auth(self): uri = QgsDataSourceUri() uri.setParam("service", "wfs") - uri.setParam("typename", "tests_points") + uri.setParam("typename", "tests.point_2056_10fields") uri.setParam("url", ROOT_URL) uri.setPassword(self.password) uri.setUsername(self.user)