We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de87bad commit 8896365Copy full SHA for 8896365
client/tests/test_JobRunner.py
@@ -349,6 +349,6 @@ def test_log_job_output(self):
349
r = self.create_runner()
350
r.client_info['log_job_output'] = True
351
proc = r.create_process(script.name, {}, devnull)
352
- r.read_process_output(proc, r.job_data["steps"][0], {})
+ r.read_process_output(proc, r.job_data["steps"][0], {'step_num': 0})
353
with open(os.path.join(r.client_info['log_dir'], 'job_1_0'), 'r') as f:
354
self.assertEqual(f.readlines(), 'foo\nbar\n')
0 commit comments