Skip to content

Commit

Permalink
AWS: Fix TestGlueCatalogTable#testCreateTable (#10221)
Browse files Browse the repository at this point in the history
  • Loading branch information
aajisaka authored Apr 25, 2024
1 parent f460964 commit 837a4aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 837a4aa

Please sign in to comment.