Index: chrome/test/pyautolib/chromeos/chromeos_utils.py |
diff --git a/chrome/test/pyautolib/chromeos/chromeos_utils.py b/chrome/test/pyautolib/chromeos/chromeos_utils.py |
index 3cbcb8e39635fa96cc0db97bbc6b3deb045ecc67..eb26a6ff4cd0a25c59903d33aa5f605f001bf970 100755 |
--- a/chrome/test/pyautolib/chromeos/chromeos_utils.py |
+++ b/chrome/test/pyautolib/chromeos/chromeos_utils.py |
@@ -28,15 +28,10 @@ class ChromeosUtils(pyauto.PyUITest): |
python chromeos_utils.py \ |
chromeos_utils.ChromeosUtils.LoginToDefaultAccount |
""" |
- if self.GetLoginInfo()['is_logged_in']: |
- logging.info('Already logged in as %s.' % self.GetLoginInfo()['email']) |
- return |
- creds = constants.CREDENTIALS['$default'] |
- username = creds[0] |
- passwd = creds[1] |
- self.Login(username, passwd) |
- assert self.GetLoginInfo()['is_logged_in'] |
- logging.info('Logged in as %s.' % username) |
+ # Should auto-login. Nothing to do here. |
+ # TODO(nirnimesh): Remove this when auto-login feature |
+ # reaches chromeos such that this helper is not necessary. |
+ pass |
if __name__ == '__main__': |