Skip to content

Commit

Permalink
fix test checks
Browse files Browse the repository at this point in the history
  • Loading branch information
aldder committed Jun 24, 2024
1 parent 6f8da20 commit dd2facf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/unit/test_athena_iceberg.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,10 @@ def test_athena_to_iceberg_merge_into_nulls(path: str, path2: str, glue_database
unload_approach=False,
)

assert_pandas_equals(df_expected.sort_values(df_expected.columns), df_out.sort_values(df_out.columns))
assert_pandas_equals(
df_out.sort_values(df_out.columns.to_list()).reset_index(drop=True),
df_expected.sort_values(df_expected.columns.to_list()).reset_index(drop=True),
)


def test_athena_to_iceberg_merge_into_ignore(path: str, path2: str, glue_database: str, glue_table: str) -> None:
Expand Down

0 comments on commit dd2facf

Please sign in to comment.