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

Unified Diff: client/site_tests/hardware_GPIOSwitches/hardware_GPIOSwitches.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/hardware_GPIOSwitches/hardware_GPIOSwitches.py
diff --git a/client/site_tests/hardware_GPIOSwitches/hardware_GPIOSwitches.py b/client/site_tests/hardware_GPIOSwitches/hardware_GPIOSwitches.py
index 004b3c7f61de1a9bb00c051677e0eca4cb34e3a9..aefd3712835f244b84be1818e2564c461ca4fb77 100644
--- a/client/site_tests/hardware_GPIOSwitches/hardware_GPIOSwitches.py
+++ b/client/site_tests/hardware_GPIOSwitches/hardware_GPIOSwitches.py
@@ -9,13 +9,14 @@ __author__ = 'nsanders@chromium.org (Nick Sanders)'
import logging, os
from autotest_lib.client.bin import test, utils
-from autotest_lib.client.common_lib import error, site_gpio
+from autotest_lib.client.common_lib import error
+from autotest_lib.client.cros import gpio
class hardware_GPIOSwitches(test.test):
version = 4
def initialize(self):
- self._gpio = site_gpio.Gpio(error.TestError)
+ self._gpio = gpio.Gpio(error.TestError)
def gpio_read(self, name):
try:

Powered by Google App Engine
This is Rietveld 408576698