From 6ff56035c733c6580c6fdcc560905db83c108884 Mon Sep 17 00:00:00 2001 From: Akira Ajisaka Date: Thu, 25 Apr 2024 17:28:07 +0900 Subject: [PATCH] AWS: Fix TestGlueCatalogTable#testCreateTable --- .../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 7fb1f4ed1987..f6bdd89707dc 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 void testCreateTable() { 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);