From d8729065d236db3b9ab44b294ccd7aa4e35b12de Mon Sep 17 00:00:00 2001 From: Alenka Frim Date: Thu, 13 Oct 2022 16:15:06 +0200 Subject: [PATCH] Update comment in test_dictionary_from_pandas_specified_type() --- python/pyarrow/tests/test_pandas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyarrow/tests/test_pandas.py b/python/pyarrow/tests/test_pandas.py index 77bafb2ac92a8..7022441396e91 100644 --- a/python/pyarrow/tests/test_pandas.py +++ b/python/pyarrow/tests/test_pandas.py @@ -3813,7 +3813,7 @@ def test_dictionary_from_pandas_specified_type(): with pytest.raises(pa.ArrowInvalid): result = pa.array(cat, type=typ) - # mismatching order -> raise error (for now a deprecation warning) + # mismatching order -> raise error typ = pa.dictionary( index_type=pa.int8(), value_type=pa.string(), ordered=True) msg = "The 'ordered' flag of the passed categorical values "