This patch fixes the issue of mock not getting
cleaned for requests in unit tests.
Closes-Bug: #
1353506
Change-Id: Iab401021d7f180ff1f2bf3ed79166699112cc367
def _custom_setup(self):
configuration = self._set_config(create_configuration())
self.driver = common.NetAppDriver(configuration=configuration)
- requests.Session = mock.Mock(wraps=FakeEseriesHTTPSession)
+ self.mock_object(requests, 'Session', FakeEseriesHTTPSession)
self.driver.do_setup(context='context')
self.driver.check_for_setup_error()