Merge "fix up inadevertant octal to make hacking pass"

This commit is contained in:
Jenkins 2013-08-13 17:24:45 +00:00 committed by Gerrit Code Review
commit 69b7f7eae4

View File

@ -90,7 +90,7 @@ class TestFwaasL3AgentRpcCallback(base.BaseTestCase):
mock_driver.return_value) mock_driver.return_value)
def test_invoke_driver_for_plugin_api(self): def test_invoke_driver_for_plugin_api(self):
fake_firewall = {'id': 0, 'tenant_id': 001} fake_firewall = {'id': 0, 'tenant_id': 1}
self.api.plugin_rpc = mock.Mock() self.api.plugin_rpc = mock.Mock()
with contextlib.nested( with contextlib.nested(
mock.patch.object(self.api.plugin_rpc, 'get_routers'), mock.patch.object(self.api.plugin_rpc, 'get_routers'),