Skip to content

Commit c7c269b

Browse files
committed
we all love python 2
1 parent 89cfc1d commit c7c269b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_provenance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def test_secondary_files_explicit(self):
131131
}
132132
jobJson = tempfile.mktemp("job.json")
133133
with open(jobJson, "w", encoding="ASCII") as fp:
134-
json.dump(job, fp)
134+
fp.write(json.dumps(job, ensure_ascii=True))
135135

136136
self.cwltool(get_data('tests/wf/sec-wf.cwl'), jobJson)
137137
self.check_provenance(secondary_files=True)

0 commit comments

Comments
 (0)