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

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

Issue 6596018: Refactor site_servo, site_vblock and site_gpio module into client/cros package(directory). (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/factory_PreFinalCheck/factory_PreFinalCheck.py
diff --git a/client/site_tests/factory_PreFinalCheck/factory_PreFinalCheck.py b/client/site_tests/factory_PreFinalCheck/factory_PreFinalCheck.py
index 712d21f7b350f61891c8d5e79cce71104b416cdd..cda42b0c4d31528dde65e7ffeb1ac49999e8ae53 100644
--- a/client/site_tests/factory_PreFinalCheck/factory_PreFinalCheck.py
+++ b/client/site_tests/factory_PreFinalCheck/factory_PreFinalCheck.py
@@ -12,7 +12,7 @@ from autotest_lib.client.bin import factory
from autotest_lib.client.bin import factory_ui_lib as ful
from autotest_lib.client.bin import test, utils
from autotest_lib.client.common_lib import error
-from autotest_lib.client.common_lib import site_gpio
+from autotest_lib.client.cros import gpio
# TODO(hungte) We may consider using real factory_Verify in the future.
@@ -20,7 +20,7 @@ class MiniVerifier(object):
""" Simplified version of factory_Verify. """
def __init__(self):
- self._gpio = site_gpio.Gpio(error.TestError)
+ self._gpio = gpio.Gpio(error.TestError)
self._gpio.setup()
def set_test_info(self, status_file, test_list):

Powered by Google App Engine
This is Rietveld 408576698