Skip to content

Commit cbe8fd3

Browse files
Update pytest_httpserver/httpserver.py
Co-authored-by: Hayao <hayao_s@tokyo-gas.co.jp>
1 parent 2c26823 commit cbe8fd3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pytest_httpserver/httpserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ def wait_for_server_ready(self) -> None:
998998

999999
url = self.url_for("/")
10001000
if not url.startswith(("http://", "https://")):
1001-
raise ValueError(f"Invalid URL generated for readiness check check: {url}") # noqa: EM102
1001+
raise ValueError(f"Invalid URL generated for readiness check : {url}") # noqa: EM102
10021002

10031003
with urllib.request.urlopen(url, timeout=self.startup_timeout) as resp: # noqa: S310
10041004
if resp.status != 200 or resp.read() != b"OK":

0 commit comments

Comments
 (0)