diff --git a/tests/core/test_pandas_engine.py b/tests/core/test_pandas_engine.py index 3d6c93aa9..430b70118 100644 --- a/tests/core/test_pandas_engine.py +++ b/tests/core/test_pandas_engine.py @@ -16,7 +16,13 @@ @pytest.mark.parametrize( - "data_type", list(pandas_engine.Engine.get_registered_dtypes()) + "data_type", + [ + data_type + for data_type in pandas_engine.Engine.get_registered_dtypes() + if data_type + != pandas_engine.ArrowString # `string[pyarrow]` gets parsed to `string` by pandas + ], ) def test_pandas_data_type(data_type): """Test numpy engine DataType base class."""