| Index: tools/telemetry/telemetry/benchmark.py
|
| diff --git a/tools/telemetry/telemetry/benchmark.py b/tools/telemetry/telemetry/benchmark.py
|
| index 0f1ab303a7708aa15f596e02c166f93feda5cbc6..3c20e1cd99de65c8d71c90e14c5da87107819bc6 100644
|
| --- a/tools/telemetry/telemetry/benchmark.py
|
| +++ b/tools/telemetry/telemetry/benchmark.py
|
| @@ -91,8 +91,10 @@ class Benchmark(command_line.Command):
|
| pt.__name__ = self.__class__.__name__
|
|
|
| if hasattr(self, '_disabled_strings'):
|
| + # pylint: disable=protected-access
|
| pt._disabled_strings = self._disabled_strings
|
| if hasattr(self, '_enabled_strings'):
|
| + # pylint: disable=protected-access
|
| pt._enabled_strings = self._enabled_strings
|
|
|
| expectations = self.CreateExpectations()
|
|
|