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): |