|
26 | 26 |
|
27 | 27 | base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010") |
28 | 28 | access_token = "My Access Token" |
29 | | -client_id = "My Client ID" |
| 29 | +client_id = "4ab15e51-11ad-49f4-acae-f343b7794375" |
30 | 30 | client_secret = "My Client Secret" |
31 | 31 |
|
32 | 32 |
|
@@ -73,9 +73,9 @@ def test_copy(self) -> None: |
73 | 73 | assert copied.access_token == "another My Access Token" |
74 | 74 | assert self.client.access_token == "My Access Token" |
75 | 75 |
|
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" |
79 | 79 |
|
80 | 80 | copied = self.client.copy(client_secret="another My Client Secret") |
81 | 81 | assert copied.client_secret == "another My Client Secret" |
@@ -989,9 +989,9 @@ def test_copy(self) -> None: |
989 | 989 | assert copied.access_token == "another My Access Token" |
990 | 990 | assert self.client.access_token == "My Access Token" |
991 | 991 |
|
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" |
995 | 995 |
|
996 | 996 | copied = self.client.copy(client_secret="another My Client Secret") |
997 | 997 | assert copied.client_secret == "another My Client Secret" |
|
0 commit comments