diff --git a/rs-e2e/src/main/java/gov/hhs/cdc/trustedintermediary/rse2e/external/azure/AzureBlobHelper.java b/rs-e2e/src/main/java/gov/hhs/cdc/trustedintermediary/rse2e/external/azure/AzureBlobHelper.java index 049e71112..e7dc08675 100644 --- a/rs-e2e/src/main/java/gov/hhs/cdc/trustedintermediary/rse2e/external/azure/AzureBlobHelper.java +++ b/rs-e2e/src/main/java/gov/hhs/cdc/trustedintermediary/rse2e/external/azure/AzureBlobHelper.java @@ -21,7 +21,7 @@ public static String createDateBasedPath(LocalDate date, String originalName) { public static boolean isInDateFolder(String testType, String blobPath, LocalDate creationDate) { // /GOLDEN_COPY/2021/09/01/ // /ASSERTION/2021/09/01/ - String expectedPath = testType + buildDatePathPrefix(creationDate); + String expectedPath = buildDatePathPrefix(creationDate) + testType; return blobPath.startsWith(expectedPath); } }