@@ -67,7 +67,7 @@ def test_map_column_name_to_id(catalog: Catalog, format_version: str, table_sche
6767 (pytest .lazy_fixture ("session_catalog_hive" ), "2" ),
6868 ],
6969)
70- def test_replace_sort_order (catalog : Catalog , format_version : str , table_schema_simple : Schema ) -> None :
70+ def test_update_sort_order (catalog : Catalog , format_version : str , table_schema_simple : Schema ) -> None :
7171 simple_table = _simple_table (catalog , table_schema_simple , format_version )
7272 simple_table .update_sort_order ().asc ("foo" , IdentityTransform (), NullOrder .NULLS_FIRST ).desc (
7373 "bar" , IdentityTransform (), NullOrder .NULLS_LAST
@@ -89,7 +89,7 @@ def test_replace_sort_order(catalog: Catalog, format_version: str, table_schema_
8989 (pytest .lazy_fixture ("session_catalog_hive" ), "2" ),
9090 ],
9191)
92- def test_replace_existing_sort_order (catalog : Catalog , format_version : str , table_schema_simple : Schema ) -> None :
92+ def test_update_existing_sort_order (catalog : Catalog , format_version : str , table_schema_simple : Schema ) -> None :
9393 simple_table = _simple_table (catalog , table_schema_simple , format_version )
9494 simple_table .update_sort_order ().asc ("foo" , IdentityTransform (), NullOrder .NULLS_FIRST ).commit ()
9595 assert simple_table .sort_order () == SortOrder (
0 commit comments