diff --git a/python/python/tests/test_async_client.py b/python/python/tests/test_async_client.py index d1ce5dbe7b..d46e490b70 100644 --- a/python/python/tests/test_async_client.py +++ b/python/python/tests/test_async_client.py @@ -6861,7 +6861,6 @@ async def test_xinfo_stream( ) result_full = await glide_client.xinfo_stream_full(key, count=1) - print(result_full) assert result_full.get(b"length") == 2 entries = cast(list, result_full.get(b"entries")) # only the first entry will be returned since we passed count=1 diff --git a/python/python/tests/test_scan.py b/python/python/tests/test_scan.py index d59ac470b5..907dc703d5 100644 --- a/python/python/tests/test_scan.py +++ b/python/python/tests/test_scan.py @@ -122,13 +122,10 @@ async def test_cluster_scan_cleaning_cursor(self, glide_client: GlideClusterClie ClusterScanCursor, (await glide_client.scan(ClusterScanCursor()))[0] ) cursor_string = cursor.get_cursor() - print(cursor_string) del cursor new_cursor_with_same_id = ClusterScanCursor(cursor_string) with pytest.raises(RequestError) as e_info: await glide_client.scan(new_cursor_with_same_id) - print(new_cursor_with_same_id) - print(new_cursor_with_same_id.get_cursor()) assert "Invalid scan_state_cursor id" in str(e_info.value) @pytest.mark.parametrize("cluster_mode", [True])