fix up inadevertant octal to make hacking pass

Change-Id: I82097f1f507ddf0827714598c27ec3c950bdeaee
This commit is contained in:
Mark McClain 2013-08-13 11:30:56 -04:00
parent 3d6adf7ed2
commit cf8586a881

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'),