Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Partial revert 18b69d
  • Loading branch information
nyalldawson committed May 12, 2016
1 parent febd18e commit 0332157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/tests/AlgorithmsTestBase.py
Expand Up @@ -84,7 +84,7 @@ def check_algorithm(self, name, defs):

expectFailure = False
if 'expectedFailure' in defs:
exec(('\n'.join(defs['expectedFailure'][:-1])), globals(), locals())
exec('\n'.join(defs['expectedFailure'][:-1])) in globals(), locals()
expectFailure = eval(defs['expectedFailure'][-1])

def doCheck():
Expand Down

0 comments on commit 0332157

Please sign in to comment.