Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Sep 27, 2023
1 parent d3a062f commit 2c8dc17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/integration-tests/test_integration_qgis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand All @@ -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)
Expand Down

0 comments on commit 2c8dc17

Please sign in to comment.