Typo: initilize -> initialize
BUG=None
TEST=firmware_FAFTSetup
Change-Id: I9f3198ea37524811475415668170339807c5c278
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/2844147
Tested-by: Greg Edelston <gredelston@google.com>
Auto-Submit: Greg Edelston <gredelston@google.com>
Reviewed-by: Andrew Luo <aluo@chromium.org>
Commit-Queue: Andrew Luo <aluo@chromium.org>
diff --git a/server/hosts/servo_host.py b/server/hosts/servo_host.py
index f34445d..99b342c 100644
--- a/server/hosts/servo_host.py
+++ b/server/hosts/servo_host.py
@@ -238,10 +238,10 @@
def connect_servo(self):
""" Initialize and setup servo for later use.
"""
- self.initilize_servo()
+ self.initialize_servo()
self.initialize_dut_for_servo()
- def initilize_servo(self):
+ def initialize_servo(self):
"""Establish a connection to the servod server on this host.
Initializes `self._servo` and then verifies that all network
@@ -1615,7 +1615,7 @@
# servod is running.
pass
try:
- newhost.initilize_servo()
+ newhost.initialize_servo()
newhost.initialize_dut_for_servo()
newhost._servo_state = servo_constants.SERVO_STATE_WORKING
return newhost, newhost.get_servo_state()