Skip to content

Commit fee7a86

Browse files
author
Prasanna Santhanam
committed
CLOUDSTACK-3916: Fix silly string formatting mistake
Signed-off-by: Prasanna Santhanam <tsp@apache.org>
1 parent bd7bff7 commit fee7a86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/integration/smoke/test_vm_life_cycle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ def test_10_attachAndDetach_iso(self):
752752
c = "mount |grep %s|head -1" % self.services["mount"]
753753
res = ssh_client.execute(c)
754754
size = ssh_client.execute("du %s | tail -1" % self.services["mount"])
755-
self.debug("Found a mount point at %s with size" % (res, size))
755+
self.debug("Found a mount point at %s with size %s" % (res, size))
756756

757757
# Get ISO size
758758
iso_response = list_isos(

0 commit comments

Comments
 (0)