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

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

Issue 6479003: Move site_backchannel and site_tpm module into client/cros dir. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: patch Created 9 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: client/site_tests/network_3GFailedConnect/network_3GFailedConnect.py
diff --git a/client/site_tests/network_3GFailedConnect/network_3GFailedConnect.py b/client/site_tests/network_3GFailedConnect/network_3GFailedConnect.py
index 3fe80163dc448c52f0ed74361575f614f108528e..ca28c6d3f57b7574acc0af3585126405688af5cc 100644
--- a/client/site_tests/network_3GFailedConnect/network_3GFailedConnect.py
+++ b/client/site_tests/network_3GFailedConnect/network_3GFailedConnect.py
@@ -2,7 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-from autotest_lib.client.bin import site_backchannel, test, utils
+from autotest_lib.client.bin import test, utils
+from autotest_lib.client.cros import backchannel
from autotest_lib.client.common_lib import error
import logging, time
@@ -69,7 +70,7 @@ class network_3GFailedConnect(test.test):
self.ConnectTo3GNetwork(config_timeout=15)
def run_once(self, connect_count=4):
- site_backchannel.setup()
+ backchannel.setup()
self.flim = flimflam.FlimFlam()
self.device_manager = flimflam.DeviceManager(self.flim)
try:
@@ -79,4 +80,4 @@ class network_3GFailedConnect(test.test):
try:
self.device_manager.RestoreDevices()
finally:
- site_backchannel.teardown()
+ backchannel.teardown()

Powered by Google App Engine
This is Rietveld 408576698