Updated Branches: refs/heads/4.2 91bf54652 -> 9780ffb6e
CLOUDSTACK-3916: Fix silly string formatting mistake Signed-off-by: Prasanna Santhanam <[email protected]> (cherry picked from commit 8602866063becbe67d001c1f5d778b948eb32fc0) Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/9780ffb6 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/9780ffb6 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/9780ffb6 Branch: refs/heads/4.2 Commit: 9780ffb6e10803952a0c075efc9088ee31fe0a89 Parents: 890ba45 Author: Prasanna Santhanam <[email protected]> Authored: Wed Jul 31 10:52:01 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Wed Jul 31 11:13:09 2013 +0530 ---------------------------------------------------------------------- test/integration/smoke/test_vm_life_cycle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/9780ffb6/test/integration/smoke/test_vm_life_cycle.py ---------------------------------------------------------------------- diff --git a/test/integration/smoke/test_vm_life_cycle.py b/test/integration/smoke/test_vm_life_cycle.py index 1281422..ff37c99 100644 --- a/test/integration/smoke/test_vm_life_cycle.py +++ b/test/integration/smoke/test_vm_life_cycle.py @@ -752,7 +752,7 @@ class TestVMLifeCycle(cloudstackTestCase): c = "mount |grep %s|head -1" % self.services["mount"] res = ssh_client.execute(c) size = ssh_client.execute("du %s | tail -1" % self.services["mount"]) - self.debug("Found a mount point at %s with size" % (res, size)) + self.debug("Found a mount point at %s with size %s" % (res, size)) # Get ISO size iso_response = list_isos(
