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 977b4e9 commit 711d052Copy full SHA for 711d052
src/test/java/org/commonwl/view/cwl/CWLServiceTest.java
@@ -197,7 +197,8 @@ public void workflowOverviewOverSingleFileSizeLimitThrowsIOException() throws Ex
197
198
// Should throw IOException due to oversized file
199
thrown.expect(IOException.class);
200
- thrown.expectMessage("File 'hello.cwl' is over singleFileSizeLimit - 672 bytes/0 bytes");
+ thrown.expectMessage(String.format("File 'hello.cwl' is over singleFileSizeLimit - %s bytes/0 bytes",
201
+ helloWorkflow.length()));
202
cwlService.getWorkflowOverview(helloWorkflow);
203
204
}
0 commit comments