Skip to content

Commit

Permalink
Fix CI (#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fokko committed Apr 17, 2024
1 parent 62b527e commit 87656fb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/integration/test_inspect_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,6 @@ def check_pyiceberg_df_equals_spark_df(df: pa.Table, spark_df: DataFrame) -> Non
rhs = spark_df.toPandas().sort_values('spec_id')
for column in df.column_names:
for left, right in zip(lhs[column].to_list(), rhs[column].to_list()):
if column == "partition":
right = right.asDict()
assert left == right, f"Difference in column {column}: {left} != {right}"

tbl = session_catalog.load_table(identifier)
Expand Down

0 comments on commit 87656fb

Please sign in to comment.