This is an automated email from the ASF dual-hosted git repository.

etudenhoefner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/main by this push:
     new 837a4aab37 AWS: Fix TestGlueCatalogTable#testCreateTable (#10221)
837a4aab37 is described below

commit 837a4aab37233827ec01168bc2b835f3ffcdb4bd
Author: Akira Ajisaka <[email protected]>
AuthorDate: Thu Apr 25 20:38:23 2024 +0900

    AWS: Fix TestGlueCatalogTable#testCreateTable (#10221)
---
 .../java/org/apache/iceberg/aws/glue/TestGlueCatalogTable.java          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/aws/src/integration/java/org/apache/iceberg/aws/glue/TestGlueCatalogTable.java
 
b/aws/src/integration/java/org/apache/iceberg/aws/glue/TestGlueCatalogTable.java
index 7fb1f4ed19..f6bdd89707 100644
--- 
a/aws/src/integration/java/org/apache/iceberg/aws/glue/TestGlueCatalogTable.java
+++ 
b/aws/src/integration/java/org/apache/iceberg/aws/glue/TestGlueCatalogTable.java
@@ -94,7 +94,7 @@ public class TestGlueCatalogTable extends GlueTestBase {
     
assertThat(response.table().storageDescriptor().columns()).hasSameSizeAs(schema.columns());
     
assertThat(response.table().partitionKeys()).hasSameSizeAs(partitionSpec.fields());
     assertThat(response.table().storageDescriptor().additionalLocations())
-        .isEqualTo(tableLocationProperties.values());
+        .containsExactlyInAnyOrderElementsOf(tableLocationProperties.values());
     // verify metadata file exists in S3
     String metaLocation =
         
response.table().parameters().get(BaseMetastoreTableOperations.METADATA_LOCATION_PROP);

Reply via email to