From 6d12a4fb485f4985c875855dc8e7c1fd8c6b27d0 Mon Sep 17 00:00:00 2001 From: Dane Pitkin Date: Tue, 3 Sep 2024 20:53:23 +0000 Subject: [PATCH] Delete bad test --- python/pyarrow/tests/test_table.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/python/pyarrow/tests/test_table.py b/python/pyarrow/tests/test_table.py index 8afc4778af0f3..3c975f7e0fbd5 100644 --- a/python/pyarrow/tests/test_table.py +++ b/python/pyarrow/tests/test_table.py @@ -3377,13 +3377,6 @@ def test_invalid_non_join_column(): assert exp_error_msg in str(excinfo.value) -def test_is_cpu(): - chunked_array = pa.chunked_array([]) - assert chunked_array._init_is_cpu is False - assert chunked_array.is_cpu() is True - assert chunked_array._init_is_cpu is True - - @pytest.fixture def cuda_context(): cuda = pytest.importorskip("pyarrow.cuda")