Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pblottiere committed Aug 28, 2017
1 parent e0c708c commit d4789db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/python/test_qgsvectorlayer.py
Expand Up @@ -467,7 +467,7 @@ def test_DeleteJoinedFeature(self):
join.setJoinFieldName("y")
join.setUsingMemoryCache(True)
join.setEditable(True)
join.setDeleteCascade(True)
join.setCascadedDelete(True)

layer.addJoin(join)

Expand All @@ -478,7 +478,7 @@ def test_DeleteJoinedFeature(self):
join2.setUsingMemoryCache(True)
join2.setPrefix("custom-prefix_")
join2.setEditable(True)
join2.setDeleteCascade(False)
join2.setCascadedDelete(False)

layer.addJoin(join2)

Expand Down

0 comments on commit d4789db

Please sign in to comment.