Don't bother creating another mocked urllib.urlopen.

bzr-import-20160707
Joe Talbott 10 years ago
parent f0a55936f5
commit 6269f50abc

@ -90,10 +90,7 @@ class TestTouchManifest(unittest.TestCase):
self.assertIn('foo', manifest) self.assertIn('foo', manifest)
def test_fetch_exception(self): def test_fetch_exception(self):
_p = mock.patch('urllib.urlopen') self.mocked_urlopen.side_effect = [IOError("connection refused")]
mocked_urlopen = _p.start()
self.addCleanup(_p.stop)
mocked_urlopen.side_effect = [IOError("connection refused")]
manifest = boottest.TouchManifest('not-real', 'not-real') manifest = boottest.TouchManifest('not-real', 'not-real')
self.assertEqual(0, len(manifest._manifest)) self.assertEqual(0, len(manifest._manifest))

Loading…
Cancel
Save