From cb578c219857d06afb64fc6697b9aa0819d23ad1 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 7 Oct 2025 18:16:20 -0500 Subject: [PATCH] Update test_oversized_payloads.py --- tests/integration/test_oversized_payloads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_oversized_payloads.py b/tests/integration/test_oversized_payloads.py index 22167118af..bf2722159f 100644 --- a/tests/integration/test_oversized_payloads.py +++ b/tests/integration/test_oversized_payloads.py @@ -162,7 +162,7 @@ async def test_oversized_payload_noise( assert device_info.name == "oversized-noise" # Create an oversized payload (>2304 bytes which is our new limit) - oversized_data = b"Y" * 3000 # ~3KiB, exceeds the 2304 byte limit + oversized_data = b"Y" * 32769 # ~32KiB, exceeds the 32 Kbyte limit # Access the internal connection to send raw data frame_helper = client._connection._frame_helper