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

Unified Diff: client/site_tests/factory_Verify/factory_Verify.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_Verify/factory_Verify.py
diff --git a/client/site_tests/factory_Verify/factory_Verify.py b/client/site_tests/factory_Verify/factory_Verify.py
index 0d807f220f11f7ba4ca5d82ca642c6616ec8f811..2a6c62c416cef9b155045675099b68f755642436 100644
--- a/client/site_tests/factory_Verify/factory_Verify.py
+++ b/client/site_tests/factory_Verify/factory_Verify.py
@@ -9,7 +9,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
GOOGLE_REQUIRED_TESTS = [ 'GRT_HWComponents', 'GRT_DevRec' ]
@@ -32,7 +32,7 @@ class factory_Verify(test.test):
self.alert_bypassed("DEVELOPER SWITCH BUTTON")
return
- gpio = site_gpio.Gpio(error.TestFail)
+ gpio = gpio.Gpio(error.TestFail)
gpio.setup()
property_name = 'developer_switch'
try:

Powered by Google App Engine
This is Rietveld 408576698