We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aeb0ab commit e015ceaCopy full SHA for e015cea
tests/unit/properties/non_scalar/test_workflow.py
@@ -13,9 +13,9 @@ def setUp(self):
13
def tearDown(self):
14
super().setUp()
15
16
- @mock.patch("express.properties.workflow.os")
17
- def test_pyml_workflow(self, mock_os):
18
- mock_os.listdir.return_value = MOCK_BASENAMES
+ @mock.patch("express.properties.workflow.os.listdir")
+ def test_pyml_workflow(self, mock_os_listdir):
+ mock_os_listdir.return_value = MOCK_BASENAMES
19
20
name = NAME
21
parser = PARSER
0 commit comments