We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c26823 commit cbe8fd3Copy full SHA for cbe8fd3
1 file changed
pytest_httpserver/httpserver.py
@@ -998,7 +998,7 @@ def wait_for_server_ready(self) -> None:
998
999
url = self.url_for("/")
1000
if not url.startswith(("http://", "https://")):
1001
- raise ValueError(f"Invalid URL generated for readiness check check: {url}") # noqa: EM102
+ raise ValueError(f"Invalid URL generated for readiness check : {url}") # noqa: EM102
1002
1003
with urllib.request.urlopen(url, timeout=self.startup_timeout) as resp: # noqa: S310
1004
if resp.status != 200 or resp.read() != b"OK":
0 commit comments