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

Unified Diff: tools/telemetry/telemetry/page/actions/seek_unittest.py

Issue 952693003: Telemetry: Move TimeoutException from util module to exceptions module. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months 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
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)
« no previous file with comments | « tools/telemetry/telemetry/page/actions/play_unittest.py ('k') | tools/telemetry/telemetry/unittest_util/tab_test_case.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698