ci: Fix regex for macOS log

The smoke test runs without debug logging, so the format is different.
This commit is contained in:
Florian Bruhin 2022-08-22 14:19:55 +02:00
parent e8cc163d84
commit 0dda1d41be
1 changed files with 1 additions and 2 deletions

View File

@ -174,8 +174,7 @@ def smoke_test(executable: pathlib.Path, debug: bool) -> None:
'[0-9:]* ERROR: Load error: ERR_FILE_NOT_FOUND',
# macOS 11
(r'[0-9:]* WARNING: qt-qt\.tlsbackend\.ossl Unknown module:none:0 '
r'Failed to load libssl/libcrypto\.'),
(r'[0-9:]* WARNING: Failed to load libssl/libcrypto\.'),
]
proc = _smoke_test_run(executable)