Add login_ChromeProfileSanitaryTelemetry to regression suite
This test hasn't been run automatically, yet, so let's start
running it experimentally to verify that it's ready to replace
login_ChromeProfileSanitary. Also, fix a bug that was causing it
to be unrunnable
BUG=chromium:339976
TEST=login_ChromeProfileSanitaryTelemetry
Change-Id: I278b5f3a7657ba2426a452befcffbeac06fddefd
Reviewed-on: https://chromium-review.googlesource.com/185256
Reviewed-by: Chris Masone <cmasone@chromium.org>
Tested-by: Chris Masone <cmasone@chromium.org>
Commit-Queue: Chris Masone <cmasone@chromium.org>
diff --git a/client/common_lib/cros/chrome.py b/client/common_lib/cros/chrome.py
index 4f041f0..3576bc9 100644
--- a/client/common_lib/cros/chrome.py
+++ b/client/common_lib/cros/chrome.py
@@ -148,7 +148,7 @@
return False
tab.Close()
return True
- util.WaitFor(lambda: _BrowserReady(self), poll_interval=1, timeout=10)
+ util.WaitFor(lambda: _BrowserReady(self), timeout=10)
def did_browser_crash(self, func):
@@ -163,4 +163,3 @@
exceptions.BrowserConnectionGoneException):
return True
return False
-