Skip to content

Commit ecf7da8

Browse files
committed
test parameter
1 parent b624251 commit ecf7da8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/unit_tests/conftest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
BASE_URL = "https://api-testing.datacrunch.io/v1"
77
ACCESS_TOKEN = "test-token"
88
CLIENT_ID = "0123456789xyz"
9+
CLIENT_SECRET = "0123456789xyz"
910

1011

1112
@pytest.fixture
@@ -15,5 +16,6 @@ def http_client():
1516
auth_service.is_expired = Mock(return_value=True)
1617
auth_service.refresh = Mock(return_value=None)
1718
auth_service._client_id = CLIENT_ID
19+
auth_service._client_secret = CLIENT_SECRET
1820

1921
return HTTPClient(auth_service, BASE_URL)

0 commit comments

Comments
 (0)