diff options
author | Harald Seiler <hws@denx.de> | 2020-03-26 18:07:27 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-03-27 15:42:04 -0400 |
commit | 6748a1f2a3e59a867a55487916167c4a676a884e (patch) | |
tree | 63e97b5c6c3fa791c03920fb89e68cc2a6966cb4 /test | |
parent | 39984d22138339fb2b14b21de635ef177cce0c7a (diff) | |
download | u-boot-6748a1f2a3e59a867a55487916167c4a676a884e.zip u-boot-6748a1f2a3e59a867a55487916167c4a676a884e.tar.gz u-boot-6748a1f2a3e59a867a55487916167c4a676a884e.tar.bz2 |
test/py: mmc: Fix 'mmc info' testcase
Commit 41e30dcf8796 ("cmd: mmc: Make Mode: printout consistent") fixed
the layout of `mmc info` output. Reflect this change in the respective
testcase.
Also fix a typo in the documentation.
Fixes: 41e30dcf8796 ("cmd: mmc: Make Mode: printout consistent")
Signed-off-by: Harald Seiler <hws@denx.de>
Acked-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/py/tests/test_mmc_rd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/py/tests/test_mmc_rd.py b/test/py/tests/test_mmc_rd.py index a25aa5f..ea652f9 100644 --- a/test/py/tests/test_mmc_rd.py +++ b/test/py/tests/test_mmc_rd.py @@ -56,7 +56,7 @@ env__mmc_dev_configs = ( 'info_mode': ???, 'info_buswidth': ???. }, -} +) # Configuration data for test_mmc_rd; defines regions of the MMC (entire # devices, or ranges of sectors) which can be read: @@ -210,7 +210,7 @@ def test_mmc_info(u_boot_console, env__mmc_dev_config): assert good_response in response good_response = "Bus Speed: %s" % info_speed assert good_response in response - good_response = "Mode : %s" % info_mode + good_response = "Mode: %s" % info_mode assert good_response in response good_response = "Bus Width: %s" % info_buswidth assert good_response in response |