Tests: Fix os.path.exists mock (emc_vnxdirect)
Use mock rather than assigning to os.path.exists, since this may cause later tests to break. Change-Id: I028aee93c92d5fafb4da018925d20db18c962eed
This commit is contained in:
parent
3a8b27c752
commit
6f04677640
@ -2200,9 +2200,9 @@ Time Remaining: 0 second(s)
|
|||||||
]
|
]
|
||||||
fake_cli.assert_has_calls(expected)
|
fake_cli.assert_has_calls(expected)
|
||||||
|
|
||||||
def test_terminate_connection(self):
|
@mock.patch('os.path.exists', return_value=True)
|
||||||
|
def test_terminate_connection(self, _mock_exists):
|
||||||
|
|
||||||
os.path.exists = mock.Mock(return_value=1)
|
|
||||||
self.driver = emc_cli_iscsi.EMCCLIISCSIDriver(
|
self.driver = emc_cli_iscsi.EMCCLIISCSIDriver(
|
||||||
configuration=self.configuration)
|
configuration=self.configuration)
|
||||||
cli_helper = self.driver.cli._client
|
cli_helper = self.driver.cli._client
|
||||||
|
Loading…
x
Reference in New Issue
Block a user