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

Unified Diff: client/site_tests/hardware_BluetoothSemiAuto/hardware_BluetoothSemiAuto.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
Index: client/site_tests/hardware_BluetoothSemiAuto/hardware_BluetoothSemiAuto.py
diff --git a/client/site_tests/hardware_BluetoothSemiAuto/hardware_BluetoothSemiAuto.py b/client/site_tests/hardware_BluetoothSemiAuto/hardware_BluetoothSemiAuto.py
index 3cf500c33f4e082ef868f0dde83acdcb40cfb66a..b87306bb1f1574bd4a32f8dcd7abc248be3e2713 100644
--- a/client/site_tests/hardware_BluetoothSemiAuto/hardware_BluetoothSemiAuto.py
+++ b/client/site_tests/hardware_BluetoothSemiAuto/hardware_BluetoothSemiAuto.py
@@ -5,7 +5,7 @@
import dbus, dbus.mainloop.glib, dbus.service, gobject, logging, re
from autotest_lib.client.bin import utils
from autotest_lib.client.common_lib import error
-from autotest_lib.client.cros import ui, ui_test
+from autotest_lib.client.cros import cros_ui_test, ui
_QUESTION_START = '''
@@ -44,12 +44,16 @@ class Agent(dbus.service.Object):
logging.debug('Agent: Cancel')
-class hardware_BluetoothSemiAuto(ui_test.UITest):
+class hardware_BluetoothSemiAuto(cros_ui_test.UITest):
version = 1
+ def initialize(self, creds = '$default'):
+ cros_ui_test.UITest.initialize(self, creds)
+
+
def cleanup(self):
- ui_test.UITest.cleanup(self)
+ cros_ui_test.UITest.cleanup(self)
self.disconnect_all()

Powered by Google App Engine
This is Rietveld 408576698