File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -95,9 +95,9 @@ def test_secondary_files_implicit(self):
95
95
file1idx = os .path .join (tmpdir , "foo1.txt.idx" )
96
96
97
97
with open (file1 , "w" , encoding = "ascii" ) as f :
98
- f .write ("foo" )
98
+ f .write (u "foo" )
99
99
with open (file1idx , "w" , encoding = "ascii" ) as f :
100
- f .write ("bar" )
100
+ f .write (u "bar" )
101
101
102
102
# secondary will be picked up by .idx
103
103
self .cwltool (get_data ('tests/wf/sec-wf.cwl' ), "--file1" , file1 )
@@ -110,9 +110,9 @@ def test_secondary_files_explicit(self):
110
110
file1idx = tempfile .mktemp ("bar" )
111
111
112
112
with open (file1 , "w" , encoding = "ascii" ) as f :
113
- f .write ("foo" )
113
+ f .write (u "foo" )
114
114
with open (file1idx , "w" , encoding = "ascii" ) as f :
115
- f .write ("bar" )
115
+ f .write (u "bar" )
116
116
117
117
# explicit secondaryFiles
118
118
job = {
You can’t perform that action at this time.
0 commit comments