Skip to content

Commit 2a4a57b

Browse files
author
Lê Nam Khánh
authored
chore: fix typos in tests/unit/crawlers/_http/test_http_crawler.py (#1531)
This PR fixes typos in the file tests/unit/crawlers/_http/test_http_crawler.py.
1 parent dc727f6 commit 2a4a57b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/crawlers/_http/test_http_crawler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ async def test_handles_client_errors(
126126
pytest.param([], True, 4, 1, id='default_behavior'),
127127
# error without retry for all 4xx statuses
128128
pytest.param([], False, 0, 1, id='default_behavior_without_session_pool'),
129-
# take as successful status codes from the `ignore_http_error_status_codes` list with Sessoion Pool
129+
# take as successful status codes from the `ignore_http_error_status_codes` list with Session Pool
130130
pytest.param([403], True, 0, 0, id='ignore_error_status_codes'),
131-
# take as successful status codes from the `ignore_http_error_status_codes` list without Sessoion Pool
131+
# take as successful status codes from the `ignore_http_error_status_codes` list without Session Pool
132132
pytest.param([403], False, 0, 0, id='ignore_error_status_codes_without_session_pool'),
133133
],
134134
)

0 commit comments

Comments
 (0)