You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by gi...@apache.org on 2014/06/18 09:35:34 UTC

git commit: updated refs/heads/master to e65b746

Repository: cloudstack
Updated Branches:
  refs/heads/master f52982356 -> e65b746b3


 CLOUDSTACK-6906: Fixed volume resize BVT failure


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

Branch: refs/heads/master
Commit: e65b746b346f33fc4f879479f7e45a081e06f90a
Parents: f529823
Author: Gaurav Aradhye <ga...@clogeny.com>
Authored: Wed Jun 18 13:04:35 2014 +0530
Committer: Girish Shilamkar <gi...@clogeny.com>
Committed: Wed Jun 18 13:05:21 2014 +0530

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


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e65b746b/test/integration/smoke/test_volumes.py
----------------------------------------------------------------------
diff --git a/test/integration/smoke/test_volumes.py b/test/integration/smoke/test_volumes.py
index c2f89ba..0d03524 100644
--- a/test/integration/smoke/test_volumes.py
+++ b/test/integration/smoke/test_volumes.py
@@ -520,7 +520,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:
             self.apiClient.resizeVolume(cmd)
@@ -652,7 +652,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)