We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 711d052 commit 2d88145Copy full SHA for 2d88145
src/test/java/org/commonwl/view/researchobject/ROBundleFactoryTest.java
@@ -65,7 +65,8 @@ public void bundleForValidWorkflow() throws Exception {
65
// Attempt to add RO to workflow
66
factory.createWorkflowRO(validWorkflow);
67
68
- assertEquals("test/path/to/check/for.zip", validWorkflow.getRoBundlePath());
+ assertEquals(Paths.get("test/path/to/check/for.zip"),
69
+ Paths.get(validWorkflow.getRoBundlePath()));
70
71
}
72
0 commit comments