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

Unified Diff: client/site_tests/hardware_EepromWriteProtect/hardware_EepromWriteProtect.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_EepromWriteProtect/hardware_EepromWriteProtect.py
diff --git a/client/site_tests/hardware_EepromWriteProtect/hardware_EepromWriteProtect.py b/client/site_tests/hardware_EepromWriteProtect/hardware_EepromWriteProtect.py
index 347d450b1a78e32efe933d528aef9c4b5d84ff6f..6f6cdeef35d43741267417d8accbb6c53121c78c 100644
--- a/client/site_tests/hardware_EepromWriteProtect/hardware_EepromWriteProtect.py
+++ b/client/site_tests/hardware_EepromWriteProtect/hardware_EepromWriteProtect.py
@@ -7,7 +7,7 @@ import os
from autotest_lib.client.bin import factory, test, utils
from autotest_lib.client.common_lib import error
from autotest_lib.client.common_lib import flashrom_util
-from autotest_lib.client.common_lib import site_gpio
+from autotest_lib.client.cros import gpio
class hardware_EepromWriteProtect(test.test):
@@ -25,7 +25,7 @@ class hardware_EepromWriteProtect(test.test):
def setup(self):
""" autotest setup procedure """
self.flashrom = flashrom_util.flashrom_util(verbose=self.verbose)
- self.gpio = site_gpio.Gpio(error.TestError)
+ self.gpio = gpio.Gpio(error.TestError)
def check_gpio_write_protection(self):
try:

Powered by Google App Engine
This is Rietveld 408576698