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

Unified Diff: tools/telemetry/telemetry/core/backends/chrome/inspector_console_unittest.py

Issue 151003003: Fix navigation to unittest files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert changes in memory_cache_http_unittest.py Created 6 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
« no previous file with comments | « no previous file | tools/telemetry/telemetry/core/backends/chrome/inspector_memory_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/backends/chrome/inspector_console_unittest.py
diff --git a/tools/telemetry/telemetry/core/backends/chrome/inspector_console_unittest.py b/tools/telemetry/telemetry/core/backends/chrome/inspector_console_unittest.py
index 2a1d744c876df55579ed80efae7ee454fcea901f..300016e935f6ba1ec21043f484e179fbe2e73b6d 100644
--- a/tools/telemetry/telemetry/core/backends/chrome/inspector_console_unittest.py
+++ b/tools/telemetry/telemetry/core/backends/chrome/inspector_console_unittest.py
@@ -5,22 +5,16 @@
import re
import StringIO
-from telemetry import test
from telemetry.core import util
from telemetry.unittest import tab_test_case
class TabConsoleTest(tab_test_case.TabTestCase):
- @test.Disabled('chromeos')
def testConsoleOutputStream(self):
- self._browser.SetHTTPServerDirectories(util.GetUnittestDataDir())
-
stream = StringIO.StringIO()
self._tab.message_output_stream = stream
- self._tab.Navigate(
- self._browser.http_server.UrlOf('page_that_logs_to_console.html'))
- self._tab.WaitForDocumentReadyStateToBeComplete()
+ self.Navigate('page_that_logs_to_console.html')
initial = self._tab.EvaluateJavaScript('window.__logCount')
def GotLog():
« no previous file with comments | « no previous file | tools/telemetry/telemetry/core/backends/chrome/inspector_memory_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698