Skip to content

Commit

Permalink
Fix test sample pdf file
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanmasek committed Sep 20, 2023
1 parent 2e883fe commit b84dd1a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static java.io.File getSamplePdf() throws IOException {
if (cov == null) {
return null;
}
java.io.File sampleFile = new File("/samplePdf.pdf", true).getJavaFile();
java.io.File sampleFile = new File("samplePdf.pdf", true).getJavaFile();
FileOutputStream fos = new FileOutputStream(sampleFile);
IOUtils.copy(cov.read().inputStream(), fos);
return sampleFile;
Expand Down

0 comments on commit b84dd1a

Please sign in to comment.