Merge branch 'bugfix/fix_ppos_ci_python3' into 'release/v4.2'

CI: fix ppos test app python3 error (v4.2)

See merge request espressif/esp-idf!13592
This commit is contained in:
Angus Gratton 2021-05-19 06:58:41 +00:00
commit a699475df2

View File

@ -76,7 +76,7 @@ def test_examples_protocol_pppos_connect(env, extra_data):
af, socktype, proto, canonname, addr = res
sock = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
sock.connect(addr)
sock.sendall("Espressif")
sock.sendall(b"Espressif")
sock.close()
dut1.expect(re.compile(r"IPv6 test passed"))