diff --git a/python_files/unittestadapter/pvsc_utils.py b/python_files/unittestadapter/pvsc_utils.py index 34b8553600f1..4d1cbfb5e110 100644 --- a/python_files/unittestadapter/pvsc_utils.py +++ b/python_files/unittestadapter/pvsc_utils.py @@ -350,7 +350,6 @@ def send_post_request( encoded = request.encode("utf-8") bytes_written = 0 while bytes_written < len(encoded): - print("writing more bytes!") segment = encoded[bytes_written : bytes_written + size] bytes_written += __writer.write(segment) __writer.flush()