Skip to content

Commit

Permalink
Fix integration tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
timofurrer committed Sep 1, 2019
1 parent fdf80d7 commit 9e729a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/radish/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def gather_failure(step):
if step.state is not State.FAILED:
return
with open("{}", "w+", encoding="utf-8") as failure_report_file:
with open(r"{}", "w+", encoding="utf-8") as failure_report_file:
failure_report_file.write("{{}}\\n".format(step.failure_report.name))
failure_report_file.write("{{}}\\n".format(step.failure_report.reason))
""".format(
Expand Down

0 comments on commit 9e729a3

Please sign in to comment.