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

Unified Diff: tools/telemetry/telemetry/web_perf/timeline_based_measurement_unittest.py

Issue 1458083003: [Telemetry + tools/perf] Modify the pylint disable message to use symbolic name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « tools/telemetry/telemetry/web_perf/smooth_gesture_util.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/web_perf/timeline_based_measurement_unittest.py
diff --git a/tools/telemetry/telemetry/web_perf/timeline_based_measurement_unittest.py b/tools/telemetry/telemetry/web_perf/timeline_based_measurement_unittest.py
index fcfe103abd9ab39aab15986eee44a613ce11ee00..15fe194f48d82fa327785c85fd97bab7ea0fdae9 100644
--- a/tools/telemetry/telemetry/web_perf/timeline_based_measurement_unittest.py
+++ b/tools/telemetry/telemetry/web_perf/timeline_based_measurement_unittest.py
@@ -107,7 +107,8 @@ class TimelineBasedMetricTestData(object):
all_metrics = self._tbm_options.GetTimelineBasedMetrics()
for thread, records in self._threads_to_records_map.iteritems():
- metric = tbm_module._TimelineBasedMetrics( # pylint: disable=W0212
+ # pylint: disable=protected-access
+ metric = tbm_module._TimelineBasedMetrics(
self._model, thread, records, self._results_wrapper, all_metrics)
metric.AddResults(self._results)
« no previous file with comments | « tools/telemetry/telemetry/web_perf/smooth_gesture_util.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698