From 9bc9f68410739031da688b56922235b3d13ff487 Mon Sep 17 00:00:00 2001 From: Eleanor Boyd <eleanorboyd@microsoft.com> Date: Fri, 10 Jan 2025 13:05:09 -0800 Subject: [PATCH] stray debugging print left behind (#24710) mistakenly committed and needs to be removed --- python_files/unittestadapter/pvsc_utils.py | 1 - 1 file changed, 1 deletion(-) 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()