diff mbox series

[U-Boot,1/1] test/py: u_boot_console_base.py: fix typo

Message ID 20170914102707.10509-1-xypron.glpk@gmx.de
State Accepted
Commit cd3e8a72a6fb1fe758c5f73b394527609afe26cc
Delegated to: Tom Rini
Headers show
Series [U-Boot,1/1] test/py: u_boot_console_base.py: fix typo | expand

Commit Message

Heinrich Schuchardt Sept. 14, 2017, 10:27 a.m. UTC
run_command does not have a parameter wait_for_each.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
 test/py/u_boot_console_base.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini Sept. 15, 2017, 12:39 p.m. UTC | #1
On Thu, Sep 14, 2017 at 12:27:07PM +0200, Heinrich Schuchardt wrote:

> run_command does not have a parameter wait_for_each.
> 
> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>

Applied to u-boot/master, thanks!
diff mbox series

Patch

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.