From e63c5440250d5dabc4498303c5be8cba4b0cc8e2 Mon Sep 17 00:00:00 2001 From: Chris Yeoh Date: Wed, 20 Feb 2013 15:59:31 +1030 Subject: Fix pep8 issues with test_manager.py Fixes E231 (missing whitespace) problems with nova/tests/network/test_manager.py Change-Id: I99d4c3bf7ed1a137fbfb26e9fe2f31d9104d5ae4 --- nova/tests/network/test_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/tests/network/test_manager.py b/nova/tests/network/test_manager.py index 4344aa07b..0df7efdc7 100644 --- a/nova/tests/network/test_manager.py +++ b/nova/tests/network/test_manager.py @@ -340,7 +340,7 @@ class FlatNetworkTestCase(test.TestCase): [{'id': 0}]}) db.instance_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg()).AndReturn({'security_groups': - [{'id':0, 'name':'test'}]}) + [{'id': 0, 'name': 'test'}]}) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn({'id': 0}) -- cgit