diff options
Diffstat (limited to 'test/py/tests/test_part.py')
-rw-r--r-- | test/py/tests/test_part.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/py/tests/test_part.py b/test/py/tests/test_part.py index 2b5184654db..04c95a6d3cc 100644 --- a/test/py/tests/test_part.py +++ b/test/py/tests/test_part.py @@ -7,8 +7,8 @@ import pytest @pytest.mark.buildconfigspec('cmd_part') @pytest.mark.buildconfigspec('partitions') @pytest.mark.buildconfigspec('efi_partition') -def test_part_types(u_boot_console): +def test_part_types(ubman): """Test that `part types` prints a result which includes `EFI`.""" - output = u_boot_console.run_command('part types') + output = ubman.run_command('part types') assert "Supported partition tables:" in output assert "EFI" in output |