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 <[email protected]> Authored: Wed Jun 18 13:04:35 2014 +0530 Committer: Girish Shilamkar <[email protected]> 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)
