Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(825)

Unified Diff: telemetry/telemetry/internal/backends/chrome_inspector/inspector_console_unittest.py

Issue 2692763002: Revert of [Telemetry] Switch clients to new JavaScript API (batch 5) (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698