diff --git a/tests/integration/features/conftest.py b/tests/integration/features/conftest.py index 501e1940d..9c47d1337 100644 --- a/tests/integration/features/conftest.py +++ b/tests/integration/features/conftest.py @@ -213,11 +213,7 @@ def path_should_be_loaded(quteproc, path): page could be loaded from local cache. """ url = quteproc.path_to_url(path) - pattern = re.compile( - r"load status for : LoadStatus\.success".format( - url=re.escape(url))) - quteproc.wait_for(message=pattern) + quteproc.wait_for_load_finished(path) @bdd.then(bdd.parsers.parse("{path} should be requested"))