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

Unified Diff: tools/perf/core/stacktrace_unittest.py

Issue 2581833002: Fix testCrashSymbols with PlzNavigate. (Closed)
Patch Set: try another function name Created 4 years 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/core/stacktrace_unittest.py
diff --git a/tools/perf/core/stacktrace_unittest.py b/tools/perf/core/stacktrace_unittest.py
index 51b1e8a6bef9838144aff26f29ff7affa7e1f6ee..a9d2744c8d3dc88d5452d0cf62b108dd3b525d24 100644
--- a/tools/perf/core/stacktrace_unittest.py
+++ b/tools/perf/core/stacktrace_unittest.py
@@ -36,7 +36,8 @@ class TabStackTraceTest(tab_test_case.TabTestCase):
def testCrashMinimalSymbols(self):
with self.assertRaises(exceptions.DevtoolsTargetCrashException) as c:
self._tab.Navigate('chrome://crash', timeout=5)
- self.assertIn('OnNavigate', '\n'.join(c.exception.stack_trace))
+ self.assertIn('PrepareRenderViewForNavigation',
+ '\n'.join(c.exception.stack_trace))
# The breakpad file specific test only apply to platforms which use the
# breakpad symbol format. This also must be tested in isolation because it can
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698