Use "logged into guest" instead of "logged in guest".
AFAIK this is more correct.

Signed-off-by: Michael Goldish <[email protected]>
---
 client/tests/kvm/kvm_test_utils.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/client/tests/kvm/kvm_test_utils.py 
b/client/tests/kvm/kvm_test_utils.py
index e51520a..bf8aed2 100644
--- a/client/tests/kvm/kvm_test_utils.py
+++ b/client/tests/kvm/kvm_test_utils.py
@@ -52,12 +52,12 @@ def wait_for_login(vm, nic_index=0, timeout=240, start=0, 
step=2):
     @param timeout: Time to wait before giving up.
     @return: A shell session object.
     """
-    logging.info("Try to login to guest '%s'..." % vm.name)
+    logging.info("Trying to log into guest '%s'..." % vm.name)
     session = kvm_utils.wait_for(lambda: vm.remote_login(nic_index=nic_index),
                                  timeout, start, step)
     if not session:
         raise error.TestFail("Could not log into guest '%s'" % vm.name)
-    logging.info("Logged in '%s'" % vm.name)
+    logging.info("Logged into guest '%s'" % vm.name)
     return session
 
 
-- 
1.5.4.1

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to