summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-06-15 13:54:07 +0000
committerGerrit Code Review <review@openstack.org>2013-06-15 13:54:07 +0000
commita76af123072bcd16b183df7e87ab172a9e43dda0 (patch)
tree2d68b9b758225ff770e8d5275b648fdfa363fef3 /nova/tests
parentdaad84bec14a6937d66eaaa4b78ddab8402e89eb (diff)
parent1985b176adff8252886c09f36c075af4144cb95f (diff)
Merge "Fix VMwareVCdriver reporting incorrect stats"
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/virt/vmwareapi/test_vmwareapi_vm_util.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/nova/tests/virt/vmwareapi/test_vmwareapi_vm_util.py b/nova/tests/virt/vmwareapi/test_vmwareapi_vm_util.py
index eda2c25f9..123a314c1 100644
--- a/nova/tests/virt/vmwareapi/test_vmwareapi_vm_util.py
+++ b/nova/tests/virt/vmwareapi/test_vmwareapi_vm_util.py
@@ -1,5 +1,6 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
-#
+
+# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
# Copyright 2013 Canonical Corp.
# All Rights Reserved.
#
@@ -41,8 +42,8 @@ class VMwareVMUtilTestCase(test.TestCase):
fake_session([fake.Datastore()]))
self.assertEquals(result[1], "fake-ds")
- self.assertEquals(result[2], 1024 * 1024 * 1024)
- self.assertEquals(result[3], 1024 * 1024 * 500)
+ self.assertEquals(result[2], 1024 * 1024 * 1024 * 1024)
+ self.assertEquals(result[3], 1024 * 1024 * 500 * 1024)
def test_get_datastore_ref_and_name_without_datastore(self):