Skip to content

Commit b5317c5

Browse files
committedNov 15, 2017
Fix test
1 parent de9bd1a commit b5317c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/src/python/test_provider_virtual.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ def tearDown(self):
8686
pass
8787

8888
def test_filterfid_crossjoin(self):
89-
l0 = QgsVectorLayer(os.path.join(self.testDataDir, "france_parts.shp"), "france_parts", "ogr", False)
89+
l0 = QgsVectorLayer(os.path.join(self.testDataDir, "france_parts.shp"), "france_parts", "ogr")
9090
self.assertTrue(l0.isValid())
9191
QgsProject.instance().addMapLayer(l0)
9292

93-
l1 = QgsVectorLayer(os.path.join(self.testDataDir, "points.shp"), "points", "ogr", False)
93+
l1 = QgsVectorLayer(os.path.join(self.testDataDir, "points.shp"), "points", "ogr")
9494
self.assertTrue(l1.isValid())
9595
QgsProject.instance().addMapLayer(l1)
9696

0 commit comments

Comments
 (0)
Please sign in to comment.