Skip to content

Commit 0fedf6f

Browse files
committed
fix windows paths in tests
1 parent 12a0f94 commit 0fedf6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/dev/zarr/zarrjava/ZarrApiTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void testGenericOpenV3() throws ZarrException, IOException {
5050

5151
@Test
5252
public void testGenericOpenOverloadsV3() throws ZarrException, IOException {
53-
Path arrayPath = TESTDATA.resolve("l4_sample/color/1");
53+
Path arrayPath = TESTDATA.resolve("l4_sample").resolve("color").resolve("1");
5454
Path groupPath = TESTDATA.resolve("l4_sample");
5555
Path v2GroupPath = TESTDATA.resolve("v2_sample");
5656

@@ -129,7 +129,7 @@ public void testGenericOpenV2() throws ZarrException, IOException {
129129

130130
@Test
131131
public void testGenericOpenOverloadsV2() throws ZarrException, IOException {
132-
Path arrayPath = TESTDATA.resolve("v2_sample/subgroup/array");
132+
Path arrayPath = TESTDATA.resolve("v2_sample").resolve("subgroup").resolve("array");
133133
Path groupPath = TESTDATA.resolve("v2_sample");
134134
Path v3GroupPath = TESTDATA.resolve("l4_sample");
135135

0 commit comments

Comments
 (0)