We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9781a0 commit ddf3afaCopy full SHA for ddf3afa
tests/test_docker_warning.py
@@ -2,14 +2,14 @@
2
import unittest
3
from mock import mock
4
from cwltool.utils import windows_default_container_id
5
-from cwltool.tool import DEFAULT_CONTAINER_MSG, CommandLineTool
+from cwltool.cltool import DEFAULT_CONTAINER_MSG, CommandLineTool
6
7
8
class TestDefaultDockerWarning(unittest.TestCase):
9
10
# Test to check warning when default docker Container is used on Windows
11
- @mock.patch("cwltool.draft2tool.onWindows",return_value = True)
12
- @mock.patch("cwltool.draft2tool._logger")
+ @mock.patch("cwltool.cltool.onWindows",return_value = True)
+ @mock.patch("cwltool.cltool._logger")
13
def test_default_docker_warning(self,mock_logger,mock_windows):
14
15
class TestCommandLineTool(CommandLineTool):
0 commit comments