From 71edf39feeb3340b1b51da0104b7814c4a8aa1c2 Mon Sep 17 00:00:00 2001 From: lorenzejay Date: Mon, 29 Jun 2026 15:06:21 -0700 Subject: [PATCH] Update flow streaming integration properties --- lib/crewai/tests/test_streaming_integration.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/crewai/tests/test_streaming_integration.py b/lib/crewai/tests/test_streaming_integration.py index c4dbe40aa..93869f682 100644 --- a/lib/crewai/tests/test_streaming_integration.py +++ b/lib/crewai/tests/test_streaming_integration.py @@ -241,8 +241,9 @@ class TestStreamingFlowIntegration: pass assert streaming.is_completed is True - streaming.get_full_text() - assert len(streaming.chunks) >= 0 + full_text = "".join(frame.content for frame in streaming.frames) + assert isinstance(full_text, str) + assert len(streaming.frames) > 0 result = streaming.result assert result is not None