Merge branch 'fix/fix_http_request_pytest' into 'release/v5.5'

fix(http_request): fixes failing pytest

See merge request espressif/esp-idf!48389
This commit is contained in:
Mahavir Jain
2026-05-11 16:00:18 +05:30

View File

@@ -30,7 +30,7 @@ def test_examples_protocol_http_request(dut: Dut) -> None:
dut.expect(' ... socket send success')
dut.expect(' ... set socket receiving timeout success')
# check server response
dut.expect(r'HTTP/1.0 200 OK')
dut.expect(r'HTTP/1.1 200 OK')
# read from the socket completed
dut.expect('... done reading from socket. Last read return=0 errno=128')
dut.expect(r'(\d)...')