Skip to content

Commit 8f39f9c

Browse files
authored
Merge pull request #658 from common-workflow-language/release_fix
Fix the release
2 parents 2f4196e + edc2d06 commit 8f39f9c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_js_sandbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# we should modify the subprocess imported from cwltool.sandboxjs
1010
from cwltool.sandboxjs import (check_js_threshold_version,
1111
subprocess)
12-
from tests.util import get_data
12+
from .util import get_data
1313

1414

1515
class Javascript_Sanity_Checks(unittest.TestCase):

tests/test_parallel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import cwltool.factory
88
from cwltool.executors import MultithreadedJobExecutor
99
from cwltool.utils import onWindows
10-
from tests.util import get_data
10+
from .util import get_data
1111

1212

1313
class TestParallel(unittest.TestCase):
@@ -20,7 +20,7 @@ def test_sequential_workflow(self):
2020
echo = f.make(get_data(test_file))
2121
self.assertEqual(echo(file1= {
2222
"class": "File",
23-
"location": "tests/wf/whale.txt"
23+
"location": get_data("tests/wf/whale.txt")
2424
}),
2525
{"count_output": 16})
2626

0 commit comments

Comments
 (0)