We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2f5930 commit da72e3aCopy full SHA for da72e3a
tests/utils.py
@@ -8,4 +8,5 @@
8
def get_mock_github(
9
handle: Callable[[httpx.Request], httpx.Response],
10
) -> GitHub[UnauthAuthStrategy]:
11
- return GitHub(transport=httpx.MockTransport(handle))
+ transport = httpx.MockTransport(handle)
12
+ return GitHub(transport=transport, async_transport=transport)
0 commit comments