| Index: telemetry/telemetry/internal/backends/chrome_inspector/inspector_console_unittest.py
|
| diff --git a/telemetry/telemetry/internal/backends/chrome_inspector/inspector_console_unittest.py b/telemetry/telemetry/internal/backends/chrome_inspector/inspector_console_unittest.py
|
| index 576794d086ff61f930af69faff6f540d3f9803ee..858568e36ac23a1422a8fb6bb3bb000baf7c8383 100644
|
| --- a/telemetry/telemetry/internal/backends/chrome_inspector/inspector_console_unittest.py
|
| +++ b/telemetry/telemetry/internal/backends/chrome_inspector/inspector_console_unittest.py
|
| @@ -13,9 +13,9 @@
|
| def testConsoleOutputStream(self):
|
| self.Navigate('page_that_logs_to_console.html')
|
|
|
| - initial = self._tab.EvaluateJavaScript2('window.__logCount')
|
| + initial = self._tab.EvaluateJavaScript('window.__logCount')
|
| def GotLog():
|
| - current = self._tab.EvaluateJavaScript2('window.__logCount')
|
| + current = self._tab.EvaluateJavaScript('window.__logCount')
|
| return current > initial
|
| py_utils.WaitFor(GotLog, 5)
|
|
|
|
|