Skip to content

Commit cd7047c

Browse files
Médéric RibreuxMédéric RIBREUX
Médéric Ribreux
authored and
Médéric RIBREUX
committedMay 29, 2016
Try this exec modification
1 parent 1aa0bbd commit cd7047c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/tests/AlgorithmsTestBase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def check_algorithm(self, name, defs):
9999

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

105105
def doCheck():

0 commit comments

Comments
 (0)
Please sign in to comment.