diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-07-05 17:43:13 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-07-06 21:25:32 +0200 |
commit | 983142dff8fdccfc6a063b2ffe9af14d432f6634 (patch) | |
tree | 2a272f7f72e908c5eed541799d9a90c2166d92ec /test/py/tests/test_efi_selftest.py | |
parent | fb083801d5d0f196fa6b93442da1874baefb938c (diff) | |
download | u-boot-983142dff8fdccfc6a063b2ffe9af14d432f6634.tar.gz u-boot-983142dff8fdccfc6a063b2ffe9af14d432f6634.tar.bz2 u-boot-983142dff8fdccfc6a063b2ffe9af14d432f6634.zip |
test/py: error message test_efi_selftest_device_tree
Correct the error message in test_efi_selftest_device_tree().
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'test/py/tests/test_efi_selftest.py')
-rw-r--r-- | test/py/tests/test_efi_selftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_efi_selftest.py b/test/py/tests/test_efi_selftest.py index 07e4db0452..516e41cf51 100644 --- a/test/py/tests/test_efi_selftest.py +++ b/test/py/tests/test_efi_selftest.py @@ -37,7 +37,7 @@ def test_efi_selftest_device_tree(u_boot_console): u_boot_console.run_command(cmd='bootefi selftest ${fdtcontroladdr}', wait_for_prompt=False) m = u_boot_console.p.expect(['serial-number: Testing DT', 'U-Boot']) if m != 0: - raise Exception('Reset failed in \'device tree\' test') + raise Exception('serial-number missing in device tree') u_boot_console.restart_uboot(); @pytest.mark.buildconfigspec('cmd_bootefi_selftest') |