Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Partially revert 3ec161
  • Loading branch information
nyalldawson committed Mar 10, 2016
1 parent 3ec1613 commit 8b34437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/tests/AlgorithmsTestBase.py
Expand Up @@ -91,7 +91,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 8b34437

Please sign in to comment.