diff options
Diffstat (limited to 'test/py')
-rw-r--r-- | test/py/tests/test_button.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_button.py b/test/py/tests/test_button.py index 98067a98f2..eadd9dd613 100644 --- a/test/py/tests/test_button.py +++ b/test/py/tests/test_button.py @@ -11,7 +11,7 @@ def test_button_exit_statuses(u_boot_console): expected_response = 'rc:0' response = u_boot_console.run_command('button list; echo rc:$?') assert(expected_response in response) - response = u_boot_console.run_command('button summer; echo rc:$?') + response = u_boot_console.run_command('button button1; echo rc:$?') assert(expected_response in response) expected_response = 'rc:1' |