aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-09-06 20:29:50 +0200
committerAlexander Graf <agraf@suse.de>2018-09-23 21:55:29 +0200
commitda9ea5bb0d9c5024d74b9614e2c420858adbf32e (patch)
tree502dfbeccec221cbdd08dec20b6e3056c60cd2b1 /test
parentcb03ec06f592d0c950e469c9064e53b10f2be61d (diff)
downloadu-boot-da9ea5bb0d9c5024d74b9614e2c420858adbf32e.zip
u-boot-da9ea5bb0d9c5024d74b9614e2c420858adbf32e.tar.gz
u-boot-da9ea5bb0d9c5024d74b9614e2c420858adbf32e.tar.bz2
test/py: typo occured
%s/occured/occurred/ Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'test')
-rw-r--r--test/py/tests/test_efi_selftest.py2
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 9d3a115..994d2e2 100644
--- a/test/py/tests/test_efi_selftest.py
+++ b/test/py/tests/test_efi_selftest.py
@@ -16,7 +16,7 @@ def test_efi_selftest(u_boot_console):
u_boot_console.run_command(cmd='bootefi selftest', wait_for_prompt=False)
m = u_boot_console.p.expect(['Summary: 0 failures', 'Press any key'])
if m != 0:
- raise Exception('Failures occured during the EFI selftest')
+ raise Exception('Failures occurred during the EFI selftest')
u_boot_console.run_command(cmd='', wait_for_echo=False, wait_for_prompt=False);
m = u_boot_console.p.expect(['resetting', 'U-Boot'])
if m != 0: