From f7e6e49ab5f98cef258b0f1bd4039b27f78f8295 Mon Sep 17 00:00:00 2001 From: Sarah Wooders Date: Wed, 6 Aug 2025 17:24:00 -0700 Subject: [PATCH] chore: patch timezone tests (#3789) --- tests/test_client.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_client.py b/tests/test_client.py index 3f860ce9..f4606f99 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -679,7 +679,9 @@ def test_timezone(client: Letta): "America/Los_Angeles" in response.messages[1].content or "PDT" in response.messages[1].content or "PST" in response.messages[1].content - ) + or "Pacific Daylight Time" in response.messages[1].content + or "Pacific Standard Time" in response.messages[1].content + ), f"Response content: {response.messages[1].content} does not contain expected timezone" # test updating the timezone client.agents.modify(agent_id=agent.id, timezone="America/New_York")