From 188a5c54634b4dc2de2189670722f3fc8d6bb300 Mon Sep 17 00:00:00 2001 From: Jin Shang Date: Fri, 12 Jan 2024 01:17:33 +0800 Subject: [PATCH] Update python/pyarrow/tests/test_compute.py Co-authored-by: Antoine Pitrou --- python/pyarrow/tests/test_compute.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/pyarrow/tests/test_compute.py b/python/pyarrow/tests/test_compute.py index e973cd9e195ec..d1eb605c71881 100644 --- a/python/pyarrow/tests/test_compute.py +++ b/python/pyarrow/tests/test_compute.py @@ -577,11 +577,8 @@ def test_binary_slice_compatibility(): assert pc.binary_slice(arr, start, stop, step) == result # Fixed size binary input / output for item in data: - print(item) - print(start, stop, step) fsb_scalar = pa.scalar(item, type=pa.binary(len(item))) expected = item[start:stop:step] - print(expected) actual = pc.binary_slice(fsb_scalar, start, stop, step) assert actual.type == pa.binary(len(expected)) assert actual.as_py() == expected