Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Unified Diff: chrome/test/pyautolib/pyauto.py

Issue 10824096: Remove the newline from PyAuto login automation error message. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/pyautolib/pyauto.py
diff --git a/chrome/test/pyautolib/pyauto.py b/chrome/test/pyautolib/pyauto.py
index b056bd536fe277ec471a231bbf5ba639a3468363..3cf70340285ca01e618f72c2e5c1fcf7e7c3a91d 100755
--- a/chrome/test/pyautolib/pyauto.py
+++ b/chrome/test/pyautolib/pyauto.py
@@ -4715,9 +4715,9 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase):
# GAIA authentication.
self.GetNextEvent()
except JSONInterfaceError as e:
- raise JSONInterfaceError('%s\nLogin failed. Perhaps Chrome crashed, '
+ raise JSONInterfaceError('Login failed. Perhaps Chrome crashed, '
'failed to start, or the login flow is '
- 'broken?' % str(e))
+ 'broken? Error message: %s' % str(e))
def Logout(self):
"""Log out from ChromeOS and wait for session_manager to come up.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698