From 1555c338b6fca76e06e99ba64d8bbdf0282297a1 Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Wed, 25 Feb 2026 00:05:40 -0800 Subject: [PATCH] fix(core-tests): update SDK blocks limit expectation to 100k (#9653) fix(core-tests): align blocks sdk expected limit with 100k default --- tests/sdk/blocks_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/sdk/blocks_test.py b/tests/sdk/blocks_test.py index cfc65b5a..3adc52a5 100644 --- a/tests/sdk/blocks_test.py +++ b/tests/sdk/blocks_test.py @@ -1,11 +1,11 @@ from conftest import create_test_module from letta_client import UnprocessableEntityError -from letta.constants import CORE_MEMORY_HUMAN_CHAR_LIMIT, CORE_MEMORY_PERSONA_CHAR_LIMIT +from letta.constants import CORE_MEMORY_BLOCK_CHAR_LIMIT BLOCKS_CREATE_PARAMS = [ - ("human_block", {"label": "human", "value": "test"}, {"limit": CORE_MEMORY_HUMAN_CHAR_LIMIT}, None), - ("persona_block", {"label": "persona", "value": "test1"}, {"limit": CORE_MEMORY_PERSONA_CHAR_LIMIT}, None), + ("human_block", {"label": "human", "value": "test"}, {"limit": CORE_MEMORY_BLOCK_CHAR_LIMIT}, None), + ("persona_block", {"label": "persona", "value": "test1"}, {"limit": CORE_MEMORY_BLOCK_CHAR_LIMIT}, None), ] BLOCKS_UPDATE_PARAMS = [