From: Heinrich Schuchardt Date: Fri, 5 Jul 2019 15:43:13 +0000 (+0200) Subject: test/py: error message test_efi_selftest_device_tree X-Git-Tag: v2019.10-rc1~39^2~14 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=983142dff8fdccfc6a063b2ffe9af14d432f6634;p=oweals%2Fu-boot.git test/py: error message test_efi_selftest_device_tree Correct the error message in test_efi_selftest_device_tree(). Signed-off-by: Heinrich Schuchardt --- 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')