test/py: typo occured
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 6 Sep 2018 18:29:50 +0000 (20:29 +0200)
committerAlexander Graf <agraf@suse.de>
Sun, 23 Sep 2018 19:55:29 +0000 (21:55 +0200)
%s/occured/occurred/

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
test/py/tests/test_efi_selftest.py

index 9d3a115..994d2e2 100644 (file)
@@ -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: