When trying to use tox 1.7.2 we run into a second
tearDown call being made in the test as opposed to
just using Super's version of it.
This removes that call and seems to get everything
working under tox 1.7.2
Change-Id: I0a2674b7c1ba9589cab5e3b76777fce23b6601ad
Partial-Bug:
1348818
def _clean(self):
os.remove(self.config_file)
os.remove(self.shares_file)
- super(HDSNFSDriverTest, self).tearDown()
@mock.patch.object(nfs.HDSNFSDriver, '_id_to_vol')
@mock.patch.object(nfs.HDSNFSDriver, '_get_provider_location')