1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-13 07:13:47 +01:00

Update test_oversized_payloads.py

This commit is contained in:
J. Nick Koston
2025-10-07 18:16:20 -05:00
committed by GitHub
parent ef1c12c21f
commit cb578c2198

View File

@@ -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