Skip to content

Commit

Permalink
Another attempt to fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 2, 2020
1 parent 579ef1c commit e5c533a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/python/test_qgsxmlutils.py
Expand Up @@ -261,7 +261,7 @@ def test_feature_source_definition(self):
self.assertEqual(c.source.staticValue(), 'my source')
self.assertTrue(c.selectedFeaturesOnly)
self.assertEqual(c.featureLimit, 27)
self.assertEqual(c.flags, QgsProcessingFeatureSourceDefinition.Flag.FlagCreateIndividualOutputPerInputFeature.value)
self.assertEqual(int(c.flags), int(QgsProcessingFeatureSourceDefinition.Flag.FlagCreateIndividualOutputPerInputFeature.value))
self.assertEqual(c.geometryCheck, QgsFeatureRequest.GeometrySkipInvalid)

def test_output_layer_definition(self):
Expand Down

0 comments on commit e5c533a

Please sign in to comment.