Updated Branches: refs/heads/4.2 81b5146c8 -> b3921e524
CLOUDSTACK-4422: Corrected the wrong service paths Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b3921e52 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b3921e52 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b3921e52 Branch: refs/heads/4.2 Commit: b3921e524891acb139bcc015a660541578c85ae1 Parents: 81b5146 Author: Gaurav Aradhye <[email protected]> Authored: Tue Aug 20 22:41:05 2013 -0400 Committer: Prasanna Santhanam <[email protected]> Committed: Wed Aug 21 15:43:23 2013 +0530 ---------------------------------------------------------------------- test/integration/component/test_snapshots.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b3921e52/test/integration/component/test_snapshots.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_snapshots.py b/test/integration/component/test_snapshots.py index 044e41a..cc2e604 100644 --- a/test/integration/component/test_snapshots.py +++ b/test/integration/component/test_snapshots.py @@ -668,21 +668,21 @@ class TestSnapshots(cloudstackTestCase): ), "pushd %s" % self.services["paths"]["mount_dir"], "mkdir -p %s/{%s,%s} " % ( - self.services["sub_dir"], - self.services["sub_lvl_dir1"], - self.services["sub_lvl_dir2"] + self.services["paths"]["sub_dir"], + self.services["paths"]["sub_lvl_dir1"], + self.services["paths"]["sub_lvl_dir2"] ), "echo %s > %s/%s/%s" % ( random_data_0, - self.services["sub_dir"], - self.services["sub_lvl_dir1"], - self.services["random_data"] + self.services["paths"]["sub_dir"], + self.services["paths"]["sub_lvl_dir1"], + self.services["paths"]["random_data"] ), "echo %s > %s/%s/%s" % ( random_data_1, - self.services["sub_dir"], - self.services["sub_lvl_dir2"], - self.services["random_data"] + self.services["paths"]["sub_dir"], + self.services["paths"]["sub_lvl_dir2"], + self.services["paths"]["random_data"] ), "sync", ] @@ -728,7 +728,7 @@ class TestSnapshots(cloudstackTestCase): ) except Exception as e: self.fail("SSH failed for VM with IP: %s - %s" % - (self.virtual_machine.ipaddress, e)) + (self.virtual_machine.ssh_ip, e)) qresultset = self.dbclient.execute( "select id from snapshots where uuid = '%s';" \
