We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 507b7bd commit 84230f1Copy full SHA for 84230f1
examples/src/test/java/org/apache/pdfbox/examples/pdmodel/ExtractEmbeddedFilesTest.java
@@ -48,8 +48,8 @@ void testExtractEmbeddedFiles() throws IOException
48
byte[] ba2 = Files.readAllBytes(new File(attachment2Filename).toPath());
49
String s1 = new String(ba1, StandardCharsets.US_ASCII);
50
String s2 = new String(ba2, StandardCharsets.US_ASCII);
51
- assertEquals(s1, "This is the contents of the first embedded file");
52
- assertEquals(s2, "This is the contents of the second embedded file");
+ assertEquals("This is the contents of the first embedded file", s1);
+ assertEquals("This is the contents of the second embedded file", s2);
53
Files.delete(Paths.get(collectionFilename));
54
Files.delete(Paths.get(attachment1Filename));
55
Files.delete(Paths.get(attachment2Filename));
0 commit comments