mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ci: Fixed wrong socket operation in python3
This commit is contained in:
parent
0a933f66e3
commit
650dd607de
@ -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"))
|
||||
|
Loading…
Reference in New Issue
Block a user