diff options
author | Chris Yeoh <cyeoh@au1.ibm.com> | 2013-02-20 15:59:31 +1030 |
---|---|---|
committer | Chris Yeoh <cyeoh@au1.ibm.com> | 2013-02-20 15:59:31 +1030 |
commit | e63c5440250d5dabc4498303c5be8cba4b0cc8e2 (patch) | |
tree | 2969270e7cf838a3ba63233eb8cfa9d34f4500eb | |
parent | d62205f316ad9490e1379e943972a007e071c688 (diff) | |
download | nova-e63c5440250d5dabc4498303c5be8cba4b0cc8e2.tar.gz nova-e63c5440250d5dabc4498303c5be8cba4b0cc8e2.tar.xz nova-e63c5440250d5dabc4498303c5be8cba4b0cc8e2.zip |
Fix pep8 issues with test_manager.py
Fixes E231 (missing whitespace) problems with
nova/tests/network/test_manager.py
Change-Id: I99d4c3bf7ed1a137fbfb26e9fe2f31d9104d5ae4
-rw-r--r-- | nova/tests/network/test_manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
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}) |