Skip to content

Commit 97ac188

Browse files
committed
cloud test fixes
1 parent 7141600 commit 97ac188

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationBase.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,9 @@ public void before(TestInfo testInfo) {
221221
StorageConfigInfo storageConfig = getStorageConfigInfo();
222222
URI testRuntimeURI = URI.create(storageConfig.getAllowedLocations().getFirst());
223223
catalogBaseLocation = testRuntimeURI + "/" + CATALOG_LOCATION_SUBPATH;
224-
externalCatalogBase = URI.create(testRuntimeURI + "/" + EXTERNAL_CATALOG_LOCATION_SUBPATH);
224+
externalCatalogBase =
225+
URI.create(
226+
testRuntimeURI + "/" + EXTERNAL_CATALOG_LOCATION_SUBPATH + "/" + method.getName());
225227

226228
Optional<CatalogConfig> catalogConfig =
227229
Optional.ofNullable(method.getAnnotation(CatalogConfig.class));

0 commit comments

Comments
 (0)