Skip to content

Commit

Permalink
Fix (unwanted) python exception in algorithm test
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 23, 2017
1 parent 8e88276 commit ebe0ebd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/plugins/processing/tests/QgisAlgorithmsTest.py
Expand Up @@ -49,8 +49,7 @@ def displayName(self):
return 'testalg'

def processAlgorithm(self, parameters, context, feedback):
raise GeoAlgorithmExecutionException(
self.tr('Exception while processing'))
raise GeoAlgorithmExecutionException('Exception while processing')
return {}


Expand Down

0 comments on commit ebe0ebd

Please sign in to comment.