From b08309487c41c955b4bd1ddd496f365fc841d848 Mon Sep 17 00:00:00 2001 From: cthomas Date: Mon, 24 Nov 2025 23:15:37 -0800 Subject: [PATCH] fix: relative path for data dir in test (#6376) --- tests/integration_test_send_message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_test_send_message.py b/tests/integration_test_send_message.py index 9dfc33f7..72bd38cb 100644 --- a/tests/integration_test_send_message.py +++ b/tests/integration_test_send_message.py @@ -1965,7 +1965,7 @@ def test_auto_summarize(disable_e2b_api_key: Any, client: Letta, model_config: T tags=["supervisor"], ) - philosophical_question_path = os.path.join(os.path.dirname(__file__), "..", "..", "data", "philosophical_question.txt") + philosophical_question_path = os.path.join(os.path.dirname(__file__), "data", "philosophical_question.txt") with open(philosophical_question_path, "r", encoding="utf-8") as f: philosophical_question = f.read().strip()