Skip to content

Commit a570183

Browse files
committed
PDFBOX-5660: fix naming
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1929404 13f79535-47bb-0310-9956-ffa450edef68
1 parent da267e3 commit a570183

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pdfbox/src/test/java/org/apache/pdfbox/pdmodel/graphics/image/PNGConverterTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@
5858
@Execution(ExecutionMode.CONCURRENT)
5959
class PNGConverterTest
6060
{
61-
private static final File parentDir = new File("target/test-output/graphics/graphics");
61+
private static final File PARENTDIR = new File("target/test-output/graphics/graphics");
6262

6363
@BeforeAll
6464
static void setup()
6565
{
6666
//noinspection ResultOfMethodCallIgnored
67-
parentDir.mkdirs();
67+
PARENTDIR.mkdirs();
6868
}
6969

7070
/**
@@ -202,7 +202,7 @@ private void checkImageConvert(String name) throws IOException
202202
contentStream.drawImage(pdImageXObject, 0, 0, pdImageXObject.getWidth(),
203203
pdImageXObject.getHeight());
204204
}
205-
doc.save(new File(parentDir, name + ".pdf"));
205+
doc.save(new File(PARENTDIR, name + ".pdf"));
206206
BufferedImage image = pdImageXObject.getImage();
207207

208208
assertNotNull(pdImageXObject.getRawRaster());

0 commit comments

Comments
 (0)