From d36bdac114c6fa5655640fc7972bd8ec468c4526 Mon Sep 17 00:00:00 2001 From: Pepijn Date: Wed, 10 Sep 2025 21:58:35 +0200 Subject: [PATCH] fix test --- test_pi05_openpi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_pi05_openpi.py b/test_pi05_openpi.py index aeb081a24..915d9d5ce 100644 --- a/test_pi05_openpi.py +++ b/test_pi05_openpi.py @@ -20,8 +20,8 @@ def test_pi05_model_architecture(): ) # Verify tokenizer max length is set correctly - assert config.tokenizer_max_length == 48, ( - f"Expected tokenizer_max_length=48 for pi05, got {config.tokenizer_max_length}" + assert config.tokenizer_max_length == 200, ( + f"Expected tokenizer_max_length=200 for pi05, got {config.tokenizer_max_length}" ) print(f"✓ Tokenizer max length correctly set to {config.tokenizer_max_length}")