| Index: chrome/test/functional/test_utils.py
|
| diff --git a/chrome/test/functional/test_utils.py b/chrome/test/functional/test_utils.py
|
| index cdd3f0524f51d40c325f4bacf8d8c39f5e6229b7..978e488ff4c9bd32f7a472605127024f92f34052 100644
|
| --- a/chrome/test/functional/test_utils.py
|
| +++ b/chrome/test/functional/test_utils.py
|
| @@ -87,7 +87,9 @@ def VerifyGoogleAccountCredsFilled(test, username, password, tab_index=0,
|
| passwd_value = test.GetDOMValue('document.getElementById("Passwd").value',
|
| windex, tab_index)
|
| test.assertEqual(email_value, username)
|
| - test.assertEqual(passwd_value, password)
|
| + # Not using assertEqual because if it fails it would end up dumping the
|
| + # password (which is supposed to be private)
|
| + test.assertTrue(passwd_value == password)
|
|
|
|
|
| def ClearPasswords(test):
|
|
|