Skip to content

Commit cbd434d

Browse files
committed
fix test
1 parent 86f323a commit cbd434d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/test_workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ def test_run_workflow(self):
3838
self.assertEqual("789", params["COUNTER"])
3939
self.assertEqual(2, len(workflow1.get_files()))
4040
self.assertEqual(2, len(workflow1.get_jobs()))
41-
print("Output from date1: %s " % workflow1.stat("wf:date1/stdout").raw().read())
42-
print("Output from date2: %s " % workflow1.stat("wf:date2/stdout").raw().read())
41+
print("Output from date1: %s " % workflow1.stat("wf:date1/stdout").read())
42+
print("Output from date2: %s " % workflow1.stat("wf:date2/stdout").read())
4343

4444

4545
if __name__ == "__main__":

0 commit comments

Comments
 (0)