]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
fix up inadevertant octal to make hacking pass
authorMark McClain <mark.mcclain@dreamhost.com>
Tue, 13 Aug 2013 15:30:56 +0000 (11:30 -0400)
committerMark McClain <mark.mcclain@dreamhost.com>
Tue, 13 Aug 2013 15:30:56 +0000 (11:30 -0400)
Change-Id: I82097f1f507ddf0827714598c27ec3c950bdeaee

neutron/tests/unit/services/firewall/agents/l3reference/test_firewall_l3_agent.py

index 9c3ff7cc25a7e46ef9bf907dbdef8ddfa6d1fd0f..04e072518801360f28a3d203b1536851af409cf9 100644 (file)
@@ -90,7 +90,7 @@ class TestFwaasL3AgentRpcCallback(base.BaseTestCase):
                 mock_driver.return_value)
 
     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()
         with contextlib.nested(
             mock.patch.object(self.api.plugin_rpc, 'get_routers'),