Skip to content

Commit ddf3afa

Browse files
committed
tests/test_docker_warning.py: Fix error due to file name refactor
1 parent e9781a0 commit ddf3afa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_docker_warning.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
import unittest
33
from mock import mock
44
from cwltool.utils import windows_default_container_id
5-
from cwltool.tool import DEFAULT_CONTAINER_MSG, CommandLineTool
5+
from cwltool.cltool import DEFAULT_CONTAINER_MSG, CommandLineTool
66

77

88
class TestDefaultDockerWarning(unittest.TestCase):
99

1010
# 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")
11+
@mock.patch("cwltool.cltool.onWindows",return_value = True)
12+
@mock.patch("cwltool.cltool._logger")
1313
def test_default_docker_warning(self,mock_logger,mock_windows):
1414

1515
class TestCommandLineTool(CommandLineTool):

0 commit comments

Comments
 (0)