Index: tools/perf/measurements/smoothness_unittest.py |
diff --git a/tools/perf/measurements/smoothness_unittest.py b/tools/perf/measurements/smoothness_unittest.py |
index 80fa42ee33a4b16edfcf04265a5f7b747f26cc7e..00718abbd676dfafc24464f02f20b07c837e905b 100644 |
--- a/tools/perf/measurements/smoothness_unittest.py |
+++ b/tools/perf/measurements/smoothness_unittest.py |
@@ -68,11 +68,16 @@ class SmoothnessUnitTest( |
'DELAY(cc.BeginMainFrame;0.012000;static)', |
'DELAY(cc.DrawAndSwap;0.012000;alternating)', |
'DELAY(gpu.PresentingFrame;0.012000;static)', |
- 'benchmark', |
- 'webkit.console' |
+ 'benchmark' |
] |
actual_category_filter = tab.browser.category_filter.split(',') |
actual_category_filter.sort() |
+ |
+ # FIXME: Put blink.console into the expected above and remove these two |
+ # remove entries when the blink.console change has rolled into chromium. |
+ actual_category_filter.remove('webkit.console') |
+ actual_category_filter.remove('blink.console') |
+ |
if expected_category_filter != actual_category_filter: |
sys.stderr.write("Expected category filter: %s\n" % |
repr(expected_category_filter)) |