summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2017-09-14 12:27:07 +0200
committerTom Rini <trini@konsulko.com>2017-09-15 08:05:12 -0400
commitcd3e8a72a6fb1fe758c5f73b394527609afe26cc (patch)
treef12a72e60069768f6d68af0973b3d7687d371cff /test
parent5c761ce58666b3a1695697498598f8bf3484a0c7 (diff)
test/py: u_boot_console_base.py: fix typo
run_command does not have a parameter wait_for_each. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'test')
-rw-r--r--test/py/u_boot_console_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/u_boot_console_base.py b/test/py/u_boot_console_base.py
index b1f474236e..eedf73f858 100644
--- a/test/py/u_boot_console_base.py
+++ b/test/py/u_boot_console_base.py
@@ -160,7 +160,7 @@ class ConsoleBase(object):
Args:
cmd: The command to send.
- wait_for_each: Boolean indicating whether to wait for U-Boot to
+ wait_for_echo: Boolean indicating whether to wait for U-Boot to
echo the command text back to its output.
send_nl: Boolean indicating whether to send a newline character
after the command string.