summaryrefslogtreecommitdiff
path: root/test/hello.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/hello.py')
-rw-r--r--test/hello.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/hello.py b/test/hello.py
index a717185fd0..956a43b8f8 100644
--- a/test/hello.py
+++ b/test/hello.py
@@ -6,10 +6,10 @@
#
def test(helper):
- helper.wait_output("--- Chrome EC initialized! ---")
+ helper.wait_output("--- Chrome EC initialized")
helper.ec_command("version")
ro = helper.wait_output("RO version:\s*(?P<ro>\S+)", use_re=True)["ro"]
wa = helper.wait_output("RW-A version:\s*(?P<a>\S+)", use_re=True)["a"]
- wb = helper.wait_output("RW-B version:\s*(?P<b>\S+)", use_re=True)["b"]
+ wb = helper.wait_output("RW-B version:\s*(?P<b>\S*)", use_re=True)["b"]
helper.trace("Version (RO/A/B) %s / %s / %s\n" % (ro, wa, wb))
return True # PASS !