| Index: tools/telemetry/telemetry/page/actions/action_runner_unittest.py
|
| diff --git a/tools/telemetry/telemetry/page/actions/action_runner_unittest.py b/tools/telemetry/telemetry/page/actions/action_runner_unittest.py
|
| index 4651deb3b93619e5bbdaa4e94a0ccf61e0628624..4bcbb198b79a596d10fc5cf443ca939108766f98 100644
|
| --- a/tools/telemetry/telemetry/page/actions/action_runner_unittest.py
|
| +++ b/tools/telemetry/telemetry/page/actions/action_runner_unittest.py
|
| @@ -5,7 +5,6 @@
|
| from telemetry import benchmark
|
| from telemetry.core import exceptions
|
| from telemetry.core import util
|
| -from telemetry.core.backends.chrome import tracing_backend
|
| from telemetry.timeline import model
|
| from telemetry.page.actions import action_runner as action_runner_module
|
| from telemetry.page.actions import page_action
|
| @@ -28,7 +27,7 @@ class ActionRunnerInteractionTest(tab_test_case.TabTestCase):
|
| action_runner = action_runner_module.ActionRunner(self._tab)
|
| self.Navigate('interaction_enabled_page.html')
|
| action_runner.Wait(1)
|
| - self._browser.StartTracing(tracing_backend.DEFAULT_TRACE_CATEGORIES)
|
| + self._browser.StartTracing()
|
| interaction = action_runner.BeginInteraction('InteractionName',
|
| **interaction_kwargs)
|
| interaction.End()
|
|
|