From 70814c4140760e0804d1023bb1c3e8b74bcc3cad Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 14 May 2024 12:06:42 +0000 Subject: [PATCH] chore(tests): update client ID example value --- tests/conftest.py | 2 +- tests/test_client.py | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 0a070000..6ba51ce7 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -27,7 +27,7 @@ def event_loop() -> Iterator[asyncio.AbstractEventLoop]: base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010") access_token = "My Access Token" -client_id = "My Client ID" +client_id = "4ab15e51-11ad-49f4-acae-f343b7794375" client_secret = "My Client Secret" diff --git a/tests/test_client.py b/tests/test_client.py index 6585e9e3..7fb8e3d8 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -26,7 +26,7 @@ base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010") access_token = "My Access Token" -client_id = "My Client ID" +client_id = "4ab15e51-11ad-49f4-acae-f343b7794375" client_secret = "My Client Secret" @@ -73,9 +73,9 @@ def test_copy(self) -> None: assert copied.access_token == "another My Access Token" assert self.client.access_token == "My Access Token" - copied = self.client.copy(client_id="another My Client ID") - assert copied.client_id == "another My Client ID" - assert self.client.client_id == "My Client ID" + copied = self.client.copy(client_id="another 4ab15e51-11ad-49f4-acae-f343b7794375") + assert copied.client_id == "another 4ab15e51-11ad-49f4-acae-f343b7794375" + assert self.client.client_id == "4ab15e51-11ad-49f4-acae-f343b7794375" copied = self.client.copy(client_secret="another My Client Secret") assert copied.client_secret == "another My Client Secret" @@ -989,9 +989,9 @@ def test_copy(self) -> None: assert copied.access_token == "another My Access Token" assert self.client.access_token == "My Access Token" - copied = self.client.copy(client_id="another My Client ID") - assert copied.client_id == "another My Client ID" - assert self.client.client_id == "My Client ID" + copied = self.client.copy(client_id="another 4ab15e51-11ad-49f4-acae-f343b7794375") + assert copied.client_id == "another 4ab15e51-11ad-49f4-acae-f343b7794375" + assert self.client.client_id == "4ab15e51-11ad-49f4-acae-f343b7794375" copied = self.client.copy(client_secret="another My Client Secret") assert copied.client_secret == "another My Client Secret"