We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b624251 commit ecf7da8Copy full SHA for ecf7da8
tests/unit_tests/conftest.py
@@ -6,6 +6,7 @@
6
BASE_URL = "https://api-testing.datacrunch.io/v1"
7
ACCESS_TOKEN = "test-token"
8
CLIENT_ID = "0123456789xyz"
9
+CLIENT_SECRET = "0123456789xyz"
10
11
12
@pytest.fixture
@@ -15,5 +16,6 @@ def http_client():
15
16
auth_service.is_expired = Mock(return_value=True)
17
auth_service.refresh = Mock(return_value=None)
18
auth_service._client_id = CLIENT_ID
19
+ auth_service._client_secret = CLIENT_SECRET
20
21
return HTTPClient(auth_service, BASE_URL)
0 commit comments