Skip to content

Commit 3c2f250

Browse files
[async] fix tests
1 parent f9c72f8 commit 3c2f250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/aio/mock_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async def forbidden_connect(*args, **kwargs):
3535

3636
class MockSessionManager(SessionManager):
3737
def make_session(self, *, url: str | None = None):
38-
session = super().make_session(url)
38+
session = super().make_session(url=url)
3939
if not allow_send:
4040
# Block at connector._connect level (like sync blocks session.send)
4141
# This allows patches on session.request to work

0 commit comments

Comments
 (0)