summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-03-27 17:54:38 -0400
committerTom Rini <trini@konsulko.com>2020-03-27 17:54:38 -0400
commit350c44dfb99017e9147ee07d37a40626bde62250 (patch)
tree2a69f066e782471f0ad9fd198e803430a046e47f /test
parent39984d22138339fb2b14b21de635ef177cce0c7a (diff)
parent6cc8e545b79311de2dbf7f05291fc77a54ffea6b (diff)
Merge branch '2020-03-27-master-imports'
- Update a few MAINTAINERS entries - cache alignment fix in ext4 code - Two small test fixes
Diffstat (limited to 'test')
-rw-r--r--test/compression.c2
-rw-r--r--test/py/tests/test_mmc_rd.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/compression.c b/test/compression.c
index cf040d7c86..63f929fa4b 100644
--- a/test/compression.c
+++ b/test/compression.c
@@ -451,7 +451,7 @@ static int compress_using_none(struct unit_test_state *uts,
}
/**
- * run_bootm_test() - Run tests on the bootm decopmression function
+ * run_bootm_test() - Run tests on the bootm decompression function
*
* @comp_type: Compression type to test
* @compress: Our function to compress data
diff --git a/test/py/tests/test_mmc_rd.py b/test/py/tests/test_mmc_rd.py
index a25aa5f6f7..ea652f9136 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