Index: chrome/test/functional/sync.py |
diff --git a/chrome/test/functional/sync.py b/chrome/test/functional/sync.py |
index fc9dd074ed8e7cdb44d1a91c3e7882acff18fa5f..615360fb9a360f08769497daccdf93414a6fdcac 100644 |
--- a/chrome/test/functional/sync.py |
+++ b/chrome/test/functional/sync.py |
@@ -12,9 +12,9 @@ class SyncTest(pyauto.PyUITest): |
def testSignInToSync(self): |
"""Sign in to sync.""" |
- # Need to initialize username and password. See crbug.com/60970. |
- username = '<username>@gmail.com' |
- password = '<password>' |
+ creds = self.GetPrivateInfo()['test_google'] |
Raghu Simha
2010/11/10 02:31:39
nit: 'test_google' sounds vague. How about 'sync_c
|
+ username = creds['username'] |
+ password = creds['password'] |
self.assertTrue(self.GetSyncInfo()['summary'] == 'OFFLINE_UNUSABLE') |
self.assertTrue(self.GetSyncInfo()['last synced'] == 'Never') |
self.assertTrue(self.SignInToSync(username, password)) |
@@ -23,9 +23,9 @@ class SyncTest(pyauto.PyUITest): |
def testDisableAndEnableDatatype(self): |
"""Sign in, disable and then enable sync for a datatype.""" |
- # Need to initialize username and password. See crbug.com/60970. |
- username = '<username>@gmail.com' |
- password = '<password>' |
+ creds = self.GetPrivateInfo()['test_google'] |
+ username = creds['username'] |
+ password = creds['password'] |
self.assertTrue(self.SignInToSync(username, password)) |
self.assertTrue(self.GetSyncInfo()['summary'] == 'READY') |
self.assertTrue(self.GetSyncInfo()['last synced'] == 'Just now') |
@@ -36,9 +36,9 @@ class SyncTest(pyauto.PyUITest): |
def testRestartBrowser(self): |
"""Sign in to sync and restart the browser.""" |
- # Need to initialize username and password. See crbug.com/60970. |
- username = '<username>@gmail.com' |
- password = '<password>' |
+ creds = self.GetPrivateInfo()['test_google'] |
+ username = creds['username'] |
+ password = creds['password'] |
self.assertTrue(self.SignInToSync(username, password)) |
self.assertTrue(self.GetSyncInfo()['summary'] == 'READY') |
self.assertTrue(self.GetSyncInfo()['last synced'] == 'Just now') |