diff --git a/tcp_client_split_call.py b/tcp_client_split_call.py index 5aee44c..2dddbeb 100644 --- a/tcp_client_split_call.py +++ b/tcp_client_split_call.py @@ -16,7 +16,7 @@ def test_request_single_packet(): sock.connect((f'{tcp_server_adress}', 80)) request = b"GET / HTTP/1.1\r\nHost: " request.append(tcp_server_adress.encode()) - request.append(b"}\r\n\r\n") + request.append(b"\r\n\r\n") sock.sendall(request.encode()) print_sock_ctts() sock.close()