From df59071747f808d688479ac9c0dde7d9ed375a5c Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 6 Dec 2021 18:07:14 -0500 Subject: [PATCH] Bleh cast to list for `msgpack` --- tests/test_context_stream_semantics.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_context_stream_semantics.py b/tests/test_context_stream_semantics.py index 373c683..b57cec7 100644 --- a/tests/test_context_stream_semantics.py +++ b/tests/test_context_stream_semantics.py @@ -588,6 +588,7 @@ async def echo_back_sequence( msg_buffer_size=msg_buffer_size, ) as stream: + seq = list(seq) # bleh, `msgpack`... count = 0 while count < 3: batch = []