Merge "Fix inadvertent generation of file during tox test"

This commit is contained in:
Jenkins 2016-04-05 17:39:57 +00:00 committed by Gerrit Code Review
commit 4955d07f03

View File

@ -600,6 +600,7 @@ class ShellTest(utils.TestCase):
def test_module_retrieve(self): def test_module_retrieve(self):
with mock.patch.object(troveclient.v1.modules.Module, '__getattr__', with mock.patch.object(troveclient.v1.modules.Module, '__getattr__',
mock.Mock(return_value='4321')): mock.Mock(return_value='4321')):
with mock.patch.object(builtins, 'open'):
self.run_command('module-retrieve 1234') self.run_command('module-retrieve 1234')
self.assert_called( self.assert_called(
'GET', 'GET',