From 9f0eab86500e2ede6434e8e1dfcf45ec0fb8e8a1 Mon Sep 17 00:00:00 2001 From: Hyunseok Seo Date: Fri, 17 May 2024 22:21:50 +0900 Subject: [PATCH] Update python/pyarrow/tests/test_extension_type.py Co-authored-by: Joris Van den Bossche --- python/pyarrow/tests/test_extension_type.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pyarrow/tests/test_extension_type.py b/python/pyarrow/tests/test_extension_type.py index effc791dc83a8..9aada51be7281 100644 --- a/python/pyarrow/tests/test_extension_type.py +++ b/python/pyarrow/tests/test_extension_type.py @@ -270,9 +270,9 @@ def test_ext_type_storage_type(): def test_ext_type_byte_width(): # Test for fixed-size binary types ty = UuidType() - assert ty.storage_type.byte_width == 16 + assert ty.byte_width == 16 ty = ParamExtType(5) - assert ty.storage_type.byte_width == 5 + assert ty.byte_width == 5 # Test for non fixed-size binary types ty = LabelType()