@@ -964,8 +964,8 @@ def test_sanitize_character_partitioned(catalog: Catalog) -> None:
964964
965965
966966@pytest .mark .parametrize ("format_version" , [1 , 2 ])
967- def table_write_subset_of_schema (session_catalog : Catalog , arrow_table_with_null : pa .Table , format_version : int ) -> None :
968- identifier = "default.table_append_subset_of_schema "
967+ def test_table_write_subset_of_schema (session_catalog : Catalog , arrow_table_with_null : pa .Table , format_version : int ) -> None :
968+ identifier = "default.test_table_write_subset_of_schema "
969969 tbl = _create_table (session_catalog , identifier , {"format-version" : format_version }, [arrow_table_with_null ])
970970 arrow_table_without_some_columns = arrow_table_with_null .combine_chunks ().drop (arrow_table_with_null .column_names [0 ])
971971 assert len (arrow_table_without_some_columns .columns ) < len (arrow_table_with_null .columns )
@@ -976,10 +976,10 @@ def table_write_subset_of_schema(session_catalog: Catalog, arrow_table_with_null
976976
977977
978978@pytest .mark .parametrize ("format_version" , [1 , 2 ])
979- def table_write_out_of_order_schema (session_catalog : Catalog , arrow_table_with_null : pa .Table , format_version : int ) -> None :
979+ def test_table_write_out_of_order_schema (session_catalog : Catalog , arrow_table_with_null : pa .Table , format_version : int ) -> None :
980980 import random
981981
982- identifier = "default.table_write_out_of_order_schema "
982+ identifier = "default.test_table_write_out_of_order_schema "
983983 shuffled_schema = pa .schema (random .shuffle (arrow_table_with_null .schema ))
984984
985985 tbl = _create_table (session_catalog , identifier , {"format-version" : format_version }, schema = shuffled_schema )
0 commit comments