You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/07/28 16:04:40 UTC

[28/50] git commit: updated refs/heads/4.4 to d5220a8

 CLOUDSTACK-6906: Fixed volume resize BVT failure

(cherry picked from commit 8aea23a4e36559e8113d7bc0427aa950ae8082eb)


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b56246c9
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b56246c9
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b56246c9

Branch: refs/heads/4.4
Commit: b56246c970cd35b58bf3c0209f066c0e65fa2ce1
Parents: 2422754
Author: Gaurav Aradhye <ga...@clogeny.com>
Authored: Wed Jun 18 13:04:35 2014 +0530
Committer: Daan Hoogland <da...@onecht.net>
Committed: Mon Jul 28 16:02:38 2014 +0200

----------------------------------------------------------------------
 test/integration/smoke/test_volumes.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b56246c9/test/integration/smoke/test_volumes.py
----------------------------------------------------------------------
diff --git a/test/integration/smoke/test_volumes.py b/test/integration/smoke/test_volumes.py
index 94e5086..d358c8a 100644
--- a/test/integration/smoke/test_volumes.py
+++ b/test/integration/smoke/test_volumes.py
@@ -545,7 +545,7 @@ class TestVolumes(cloudstackTestCase):
         # first, an invalid id
         cmd                = resizeVolume.resizeVolumeCmd()
         cmd.id             = "invalid id"
-        cmd.diskofferingid = self.services['resizeddiskofferingid']
+        cmd.diskofferingid = self.services['customresizeddiskofferingid']
         success            = False
         try:
             response = self.apiClient.resizeVolume(cmd)
@@ -677,7 +677,7 @@ class TestVolumes(cloudstackTestCase):
 
         cmd                = resizeVolume.resizeVolumeCmd()
         cmd.id             = self.volume.id
-        cmd.diskofferingid = self.services['resizeddiskofferingid']
+        cmd.diskofferingid = self.services['customresizeddiskofferingid']
 
         self.apiClient.resizeVolume(cmd)