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 cb6d937 commit 8544c8aCopy full SHA for 8544c8a
1 file changed
tests/test_api/test_http.py
@@ -11,13 +11,13 @@
11
12
13
@pytest.fixture
14
-def cache() -> HTTPCache:
15
- return HTTPCache()
+def cache(http_client_v1) -> HTTPCache:
+ return http_client_v1.cache
16
17
18
19
-def http_client() -> HTTPClient:
20
- return HTTPClient(api_version=APIVersion.V1)
+def http_client(http_client_v1) -> HTTPClient:
+ return http_client_v1
21
22
23
0 commit comments