Repository: cloudstack Updated Branches: refs/heads/4.4-forward a0f19d4bd -> 8aea23a4e
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/8aea23a4 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/8aea23a4 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/8aea23a4 Branch: refs/heads/4.4-forward Commit: 8aea23a4e36559e8113d7bc0427aa950ae8082eb Parents: a0f19d4 Author: Gaurav Aradhye <[email protected]> Authored: Wed Jun 18 13:04:35 2014 +0530 Committer: Girish Shilamkar <[email protected]> Committed: Wed Jun 18 13:04:35 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/8aea23a4/test/integration/smoke/test_volumes.py ---------------------------------------------------------------------- diff --git a/test/integration/smoke/test_volumes.py b/test/integration/smoke/test_volumes.py index b1a6835..e60b0fa 100644 --- a/test/integration/smoke/test_volumes.py +++ b/test/integration/smoke/test_volumes.py @@ -504,7 +504,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) @@ -636,7 +636,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)
