From 1ce9a4748070f1ed8573ce9268190ef4114a73ee Mon Sep 17 00:00:00 2001 From: Tara Drwenski Date: Tue, 16 Jan 2024 11:04:27 -0700 Subject: [PATCH] Unignore zarr s3 test and add trailing delimiter to path --- tds/src/integrationTests/java/thredds/tds/TestZarr.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tds/src/integrationTests/java/thredds/tds/TestZarr.java b/tds/src/integrationTests/java/thredds/tds/TestZarr.java index c225900025..a23200d3b1 100644 --- a/tds/src/integrationTests/java/thredds/tds/TestZarr.java +++ b/tds/src/integrationTests/java/thredds/tds/TestZarr.java @@ -4,14 +4,13 @@ import java.nio.charset.StandardCharsets; import javax.servlet.http.HttpServletResponse; -import org.junit.Ignore; import org.junit.Test; import thredds.test.util.TestOnLocalServer; public class TestZarr { final private static String ZARR_DIR_PATH = "localContent/zarr/zarr_test_data.zarr"; final private static String ZARR_ZIP_PATH = "localContent/zarr/zarr_test_data.zip"; - final private static String ZARR_S3_PATH = "s3-zarr/zarr_test_data.zarr"; + final private static String ZARR_S3_PATH = "s3-zarr/zarr_test_data.zarr/"; @Test public void shouldOpenZarrDirectory() { @@ -23,7 +22,6 @@ public void shouldOpenZarrZip() { checkWithOpendap(ZARR_ZIP_PATH); } - @Ignore("Still working on S3 Zarr") @Test public void shouldOpenObjectStoreZarrFile() { checkWithOpendap(ZARR_S3_PATH);