Skip to content

Commit 87656fb

Browse files
authored
Fix CI (#613)
1 parent 62b527e commit 87656fb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/integration/test_inspect_table.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,8 +438,6 @@ def check_pyiceberg_df_equals_spark_df(df: pa.Table, spark_df: DataFrame) -> Non
438438
rhs = spark_df.toPandas().sort_values('spec_id')
439439
for column in df.column_names:
440440
for left, right in zip(lhs[column].to_list(), rhs[column].to_list()):
441-
if column == "partition":
442-
right = right.asDict()
443441
assert left == right, f"Difference in column {column}: {left} != {right}"
444442

445443
tbl = session_catalog.load_table(identifier)

0 commit comments

Comments
 (0)