From 8a0f28c373af5ffc94df03f9fe9ad198a798b4e5 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 46a9de456c9cc..4941da0628676 100644 --- a/python/pyarrow/tests/test_table.py +++ b/python/pyarrow/tests/test_table.py @@ -3376,13 +3376,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")