Skip to content

Commit 2d88145

Browse files
committed
Compare as Path rather than strings
.. so it works on Windowst
1 parent 711d052 commit 2d88145

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/org/commonwl/view/researchobject/ROBundleFactoryTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ public void bundleForValidWorkflow() throws Exception {
6565
// Attempt to add RO to workflow
6666
factory.createWorkflowRO(validWorkflow);
6767

68-
assertEquals("test/path/to/check/for.zip", validWorkflow.getRoBundlePath());
68+
assertEquals(Paths.get("test/path/to/check/for.zip"),
69+
Paths.get(validWorkflow.getRoBundlePath()));
6970

7071
}
7172

0 commit comments

Comments
 (0)