diff options
author | Daniel Schadt <kingdread@gmx.de> | 2025-05-11 00:08:09 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2025-05-11 00:08:09 +0200 |
commit | 5125a74506680872ee27dd81797730366aee8364 (patch) | |
tree | fe047e1775ad9bf53b509449a15526204f4032b3 /tests | |
parent | 620f0c03934dd1a52e39a5747532d4c3948ccd5c (diff) | |
download | fietsboek-5125a74506680872ee27dd81797730366aee8364.tar.gz fietsboek-5125a74506680872ee27dd81797730366aee8364.tar.bz2 fietsboek-5125a74506680872ee27dd81797730366aee8364.zip |
fix tileproxy test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/playwright/test_tileproxy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/playwright/test_tileproxy.py b/tests/playwright/test_tileproxy.py index d4d3389..2a2bdc0 100644 --- a/tests/playwright/test_tileproxy.py +++ b/tests/playwright/test_tileproxy.py @@ -14,7 +14,7 @@ def test_tileproxy(page: Page, playwright_helper, caplog): # If we're too fast, the log entry might not be there yet, wait 2 more # seconds - if "Skipping tile proxy request for testing URL" not in caplog.messages: + if "Skipping tile request for testing URL" not in caplog.messages: time.sleep(2) - assert "Skipping tile proxy request for testing URL" in caplog.messages + assert "Skipping tile request for testing URL" in caplog.messages |