File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
# we should modify the subprocess imported from cwltool.sandboxjs
10
10
from cwltool .sandboxjs import (check_js_threshold_version ,
11
11
subprocess )
12
- from tests .util import get_data
12
+ from .util import get_data
13
13
14
14
15
15
class Javascript_Sanity_Checks (unittest .TestCase ):
Original file line number Diff line number Diff line change 7
7
import cwltool .factory
8
8
from cwltool .executors import MultithreadedJobExecutor
9
9
from cwltool .utils import onWindows
10
- from tests .util import get_data
10
+ from .util import get_data
11
11
12
12
13
13
class TestParallel (unittest .TestCase ):
@@ -20,7 +20,7 @@ def test_sequential_workflow(self):
20
20
echo = f .make (get_data (test_file ))
21
21
self .assertEqual (echo (file1 = {
22
22
"class" : "File" ,
23
- "location" : "tests/wf/whale.txt"
23
+ "location" : get_data ( "tests/wf/whale.txt" )
24
24
}),
25
25
{"count_output" : 16 })
26
26
You can’t perform that action at this time.
0 commit comments