| Index: tools/telemetry/telemetry/page/actions/seek_unittest.py
|
| diff --git a/tools/telemetry/telemetry/page/actions/seek_unittest.py b/tools/telemetry/telemetry/page/actions/seek_unittest.py
|
| index 192538c473014cbe814f00cd85eb84a76a8e4da6..6eefa1a9568eba6e2a8d0dd732d1cf5bb9606482 100644
|
| --- a/tools/telemetry/telemetry/page/actions/seek_unittest.py
|
| +++ b/tools/telemetry/telemetry/page/actions/seek_unittest.py
|
| @@ -3,7 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
| from telemetry import decorators
|
| -from telemetry.core import util
|
| +from telemetry.core import exceptions
|
| from telemetry.page.actions import seek
|
| from telemetry.unittest_util import tab_test_case
|
|
|
| @@ -63,4 +63,4 @@ class SeekActionTest(tab_test_case.TabTestCase):
|
| action.WillRunAction(self._tab)
|
| self._tab.EvaluateJavaScript('document.getElementById("video_1").src = ""')
|
| self.assertFalse(self._tab.EvaluateJavaScript(VIDEO_1_SEEKED_CHECK))
|
| - self.assertRaises(util.TimeoutException, action.RunAction, self._tab)
|
| + self.assertRaises(exceptions.TimeoutException, action.RunAction, self._tab)
|
|
|