Commit 25e2aae9 authored by dtu's avatar dtu Committed by Commit bot

[telemetry] Fix typo in login error handling.

BUG=None.
TEST=None.

Review URL: https://codereview.chromium.org/699203004

Cr-Commit-Position: refs/heads/master@{#302732}
parent baeb7335
......@@ -178,7 +178,8 @@ class _RunState(object):
if self._current_page.credentials:
if not self.browser.credentials.LoginNeeded(
self._current_tab, self._current_page.credentials):
raise page_test.Failure('Login as ' + self.page.credentials + ' failed')
raise page_test.Failure(
'Login as ' + self._current_page.credentials + ' failed')
self._did_login_for_current_page = True
if self._test.clear_cache_before_each_run:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment