This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new 87656fba Fix CI (#613)
87656fba is described below
commit 87656fbac913e9f117acd0f2446f4da2f9d119cd
Author: Fokko Driesprong <[email protected]>
AuthorDate: Wed Apr 17 15:47:49 2024 +0200
Fix CI (#613)
---
tests/integration/test_inspect_table.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/tests/integration/test_inspect_table.py
b/tests/integration/test_inspect_table.py
index 24c12763..a884f9d4 100644
--- a/tests/integration/test_inspect_table.py
+++ b/tests/integration/test_inspect_table.py
@@ -438,8 +438,6 @@ def test_inspect_partitions_partitioned(spark:
SparkSession, session_catalog: Ca
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)