mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 22:14:54 +00:00
cmd/eficonfig: capitalize 'enter description'
To conform with other messages capitalize the first letter: %s/enter description/Enter description/g Adjust the unit tests accordingly. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
parent
9aabcad1a7
commit
a01e7d2538
2 changed files with 4 additions and 4 deletions
|
@ -963,7 +963,7 @@ static efi_status_t eficonfig_boot_add_enter_description(void *data)
|
||||||
return handle_user_input(bo->description, EFICONFIG_DESCRIPTION_MAX, 22,
|
return handle_user_input(bo->description, EFICONFIG_DESCRIPTION_MAX, 22,
|
||||||
"\n ** Edit Description **\n"
|
"\n ** Edit Description **\n"
|
||||||
"\n"
|
"\n"
|
||||||
" enter description: ");
|
" Enter description: ");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -117,7 +117,7 @@ def test_efi_eficonfig(u_boot_console, efi_eficonfig_data):
|
||||||
press_up_down_enter_and_wait(0, 0, True, 'Quit')
|
press_up_down_enter_and_wait(0, 0, True, 'Quit')
|
||||||
|
|
||||||
# Press the enter key to select 'Description:' entry, then enter Description
|
# Press the enter key to select 'Description:' entry, then enter Description
|
||||||
press_up_down_enter_and_wait(0, 0, True, 'enter description:')
|
press_up_down_enter_and_wait(0, 0, True, 'Enter description:')
|
||||||
# Send Description user input, press ENTER key to complete
|
# Send Description user input, press ENTER key to complete
|
||||||
send_user_input_and_wait('test 1', 'Quit')
|
send_user_input_and_wait('test 1', 'Quit')
|
||||||
|
|
||||||
|
@ -166,7 +166,7 @@ def test_efi_eficonfig(u_boot_console, efi_eficonfig_data):
|
||||||
press_up_down_enter_and_wait(0, 0, True, 'Quit')
|
press_up_down_enter_and_wait(0, 0, True, 'Quit')
|
||||||
|
|
||||||
# Press the enter key to select 'Description:' entry, then enter Description
|
# Press the enter key to select 'Description:' entry, then enter Description
|
||||||
press_up_down_enter_and_wait(0, 0, True, 'enter description:')
|
press_up_down_enter_and_wait(0, 0, True, 'Enter description:')
|
||||||
# Send Description user input, press ENTER key to complete
|
# Send Description user input, press ENTER key to complete
|
||||||
send_user_input_and_wait('test 2', 'Quit')
|
send_user_input_and_wait('test 2', 'Quit')
|
||||||
|
|
||||||
|
@ -278,7 +278,7 @@ def test_efi_eficonfig(u_boot_console, efi_eficonfig_data):
|
||||||
u_boot_console.p.expect([i])
|
u_boot_console.p.expect([i])
|
||||||
|
|
||||||
# Press the enter key to select 'Description:' entry, then enter Description
|
# Press the enter key to select 'Description:' entry, then enter Description
|
||||||
press_up_down_enter_and_wait(0, 0, True, 'enter description:')
|
press_up_down_enter_and_wait(0, 0, True, 'Enter description:')
|
||||||
# Send Description user input, press ENTER key to complete
|
# Send Description user input, press ENTER key to complete
|
||||||
send_user_input_and_wait('test 3', 'Quit')
|
send_user_input_and_wait('test 3', 'Quit')
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue