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

Unified Diff: client/site_tests/audiovideo_PlaybackRecordSemiAuto/audiovideo_PlaybackRecordSemiAuto.py

Issue 5740004: Move site_chrome_test, site_logging, site_log_reader, site_crash_test into cros dir. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 years, 12 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
« no previous file with comments | « client/cros/login.py ('k') | client/site_tests/desktopui_ChromeFirstRender/desktopui_ChromeFirstRender.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/site_tests/audiovideo_PlaybackRecordSemiAuto/audiovideo_PlaybackRecordSemiAuto.py
diff --git a/client/site_tests/audiovideo_PlaybackRecordSemiAuto/audiovideo_PlaybackRecordSemiAuto.py b/client/site_tests/audiovideo_PlaybackRecordSemiAuto/audiovideo_PlaybackRecordSemiAuto.py
index b576dfd95ed2032b5ea87d4a6f8164306357e769..3acdb9d70f95378ffeb55bcbbb00d734eae9f8ad 100644
--- a/client/site_tests/audiovideo_PlaybackRecordSemiAuto/audiovideo_PlaybackRecordSemiAuto.py
+++ b/client/site_tests/audiovideo_PlaybackRecordSemiAuto/audiovideo_PlaybackRecordSemiAuto.py
@@ -6,7 +6,7 @@ import copy, logging, os, pprint, re, threading, time, urllib
from autotest_lib.client.bin import utils
from autotest_lib.client.common_lib import error
-from autotest_lib.client.cros import httpd, ui, ui_test
+from autotest_lib.client.cros import cros_ui_test, httpd, ui
# HTML templates.
_STATIC_CSS ='''
@@ -278,7 +278,7 @@ class VolumeChangeThread(threading.Thread):
self.audio.do_set_volume(self.type, self.index, self.end_volume)
-class audiovideo_PlaybackRecordSemiAuto(ui_test.UITest):
+class audiovideo_PlaybackRecordSemiAuto(cros_ui_test.UITest):
version = 1
preserve_srcdir = True
crash_handling_enabled = False
@@ -328,7 +328,7 @@ class audiovideo_PlaybackRecordSemiAuto(ui_test.UITest):
self._server_root = 'http://localhost:8000/'
self._testServer = httpd.HTTPListener(port=8000, docroot=self.bindir)
self._testServer.run()
- ui_test.UITest.initialize(self, creds)
+ cros_ui_test.UITest.initialize(self, creds)
def cleanup(self):
@@ -336,7 +336,7 @@ class audiovideo_PlaybackRecordSemiAuto(ui_test.UITest):
if device['is_hardware']:
self.restore_playback_port(device)
self._testServer.stop()
- ui_test.UITest.cleanup(self)
+ cros_ui_test.UITest.cleanup(self)
def run_once(self, timeout=10000):
« no previous file with comments | « client/cros/login.py ('k') | client/site_tests/desktopui_ChromeFirstRender/desktopui_ChromeFirstRender.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698