help: Update status log test

Check for either "Logs begin" (stable) or "Journal begins" (testing/unstable).

Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
James Valleroy 2020-12-19 12:26:52 -05:00 committed by Sunil Mohan Adapa
parent f5b34704ee
commit 925903e72b
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -25,4 +25,5 @@ def _go_to_status_logs(browser):
def _are_status_logs_shown(browser):
return browser.is_text_present('Logs begin')
return (browser.is_text_present('Logs begin')
or browser.is_text_present('Journal begins'))