Convert all fns to block arg syntax.

This commit is contained in:
Bob Nystrom
2014-04-02 19:41:53 -07:00
parent a550d6cea4
commit d146018559
61 changed files with 124 additions and 127 deletions
+2 -1
View File
@@ -180,8 +180,9 @@ def run_test(path):
# Validate the exit code.
if proc.returncode != expect_return:
fails.append('Expected return code {0} and got {1}.'
fails.append('Expected return code {0} and got {1}. Stderr:'
.format(expect_return, proc.returncode))
fails += err.split('\n')
else:
# Validate the output.
expect_index = 0