diff options
| author | Mark Washenberger <mark.washenberger@rackspace.com> | 2011-05-25 15:51:47 -0400 |
|---|---|---|
| committer | Mark Washenberger <mark.washenberger@rackspace.com> | 2011-05-25 15:51:47 -0400 |
| commit | aebbb90f84e8793040c7dd75eb67ae4914186301 (patch) | |
| tree | 2e5e629ff24b75b723bdd699e3a21ff991e1b8a5 | |
| parent | 2a9774a061dacba85e254e3d46bc52e8caa8e7af (diff) | |
| download | nova-aebbb90f84e8793040c7dd75eb67ae4914186301.tar.gz nova-aebbb90f84e8793040c7dd75eb67ae4914186301.tar.xz nova-aebbb90f84e8793040c7dd75eb67ae4914186301.zip | |
pep8 fixes
| -rw-r--r-- | nova/tests/api/openstack/test_limits.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/tests/api/openstack/test_limits.py b/nova/tests/api/openstack/test_limits.py index 7f941ef17..1bbe96612 100644 --- a/nova/tests/api/openstack/test_limits.py +++ b/nova/tests/api/openstack/test_limits.py @@ -100,7 +100,7 @@ class LimitsControllerV10Test(BaseLimitTestSuite): self.absolute_limits = { 'instances': 5, 'cores': 8, - 'ram': 2**13, + 'ram': 2 ** 13, 'volumes': 21, 'gigabytes': 34, 'metadata_items': 55, @@ -150,7 +150,7 @@ class LimitsControllerV10Test(BaseLimitTestSuite): "absolute": { "maxTotalInstances": 5, "maxTotalCores": 8, - "maxTotalRAMSize": 2**13, + "maxTotalRAMSize": 2 ** 13, "maxServerMeta": 55, "maxImageMeta": 55, "maxPersonality": 89, |
