Skip to content

Commit 5210e98

Browse files
chore(tests): update client ID example value (#382)
1 parent 9616abc commit 5210e98

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def event_loop() -> Iterator[asyncio.AbstractEventLoop]:
2727
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
2828

2929
access_token = "My Access Token"
30-
client_id = "My Client ID"
30+
client_id = "4ab15e51-11ad-49f4-acae-f343b7794375"
3131
client_secret = "My Client Secret"
3232

3333

tests/test_client.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
2828
access_token = "My Access Token"
29-
client_id = "My Client ID"
29+
client_id = "4ab15e51-11ad-49f4-acae-f343b7794375"
3030
client_secret = "My Client Secret"
3131

3232

@@ -73,9 +73,9 @@ def test_copy(self) -> None:
7373
assert copied.access_token == "another My Access Token"
7474
assert self.client.access_token == "My Access Token"
7575

76-
copied = self.client.copy(client_id="another My Client ID")
77-
assert copied.client_id == "another My Client ID"
78-
assert self.client.client_id == "My Client ID"
76+
copied = self.client.copy(client_id="another 4ab15e51-11ad-49f4-acae-f343b7794375")
77+
assert copied.client_id == "another 4ab15e51-11ad-49f4-acae-f343b7794375"
78+
assert self.client.client_id == "4ab15e51-11ad-49f4-acae-f343b7794375"
7979

8080
copied = self.client.copy(client_secret="another My Client Secret")
8181
assert copied.client_secret == "another My Client Secret"
@@ -989,9 +989,9 @@ def test_copy(self) -> None:
989989
assert copied.access_token == "another My Access Token"
990990
assert self.client.access_token == "My Access Token"
991991

992-
copied = self.client.copy(client_id="another My Client ID")
993-
assert copied.client_id == "another My Client ID"
994-
assert self.client.client_id == "My Client ID"
992+
copied = self.client.copy(client_id="another 4ab15e51-11ad-49f4-acae-f343b7794375")
993+
assert copied.client_id == "another 4ab15e51-11ad-49f4-acae-f343b7794375"
994+
assert self.client.client_id == "4ab15e51-11ad-49f4-acae-f343b7794375"
995995

996996
copied = self.client.copy(client_secret="another My Client Secret")
997997
assert copied.client_secret == "another My Client Secret"

0 commit comments

Comments
 (0)