Skip to content

Commit

Permalink
test: fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: Tim Janke <[email protected]>
  • Loading branch information
andreas-sipgate and flying7eleven committed Jan 7, 2025
1 parent b4b0b65 commit 5fd9a6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_http_request_recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,11 @@ async def test_responds_infinitely(self) -> None:

async with (HttpRequestRecorder(name="infinite responder", port=self.port) as recorder,
ClientSession() as http_session):
def inifinite_responses() -> Generator[bytes, None, None]:
def infinite_responses() -> Generator[bytes, None, None]:
while True:
yield b'on and on...'

recorder.expect_path("/", inifinite_responses())
recorder.expect_path("/", infinite_responses())

for _ in range(10):
await http_session.post(f"http://localhost:{self.port}/")
Expand Down

0 comments on commit 5fd9a6d

Please sign in to comment.