diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2022-05-17 23:24:45 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-05-26 10:27:14 -0400 |
commit | 9e892ac27670e094ce4bade5a13b4d0e3a7c4da3 (patch) | |
tree | a7d77a4c173c21448141bd9d249fde68a81d8775 /test/py/tests/test_part.py | |
parent | 7eb2e88ae9120b14a479bb14f461762619d7f551 (diff) | |
download | u-boot-9e892ac27670e094ce4bade5a13b4d0e3a7c4da3.tar.gz u-boot-9e892ac27670e094ce4bade5a13b4d0e3a7c4da3.tar.bz2 u-boot-9e892ac27670e094ce4bade5a13b4d0e3a7c4da3.zip |
test/py: test_part: Correct the test case name
Use test_part_types as the name instead of dm_compact.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'test/py/tests/test_part.py')
-rw-r--r-- | test/py/tests/test_part.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_part.py b/test/py/tests/test_part.py index cba9804510..2b5184654d 100644 --- a/test/py/tests/test_part.py +++ b/test/py/tests/test_part.py @@ -7,7 +7,7 @@ import pytest @pytest.mark.buildconfigspec('cmd_part') @pytest.mark.buildconfigspec('partitions') @pytest.mark.buildconfigspec('efi_partition') -def test_dm_compat(u_boot_console): +def test_part_types(u_boot_console): """Test that `part types` prints a result which includes `EFI`.""" output = u_boot_console.run_command('part types') assert "Supported partition tables:" in output |