This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-imaging.git
The following commit(s) were added to refs/heads/master by this push: new 581c681f Camel-case internal names 581c681f is described below commit 581c681f8451bde03b14a8d3183ac459a021e921 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Oct 19 08:23:51 2023 -0400 Camel-case internal names --- .../imaging/roundtrip/NullParametersRoundtripTest.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/test/java/org/apache/commons/imaging/roundtrip/NullParametersRoundtripTest.java b/src/test/java/org/apache/commons/imaging/roundtrip/NullParametersRoundtripTest.java index 2d69e713..88925aea 100644 --- a/src/test/java/org/apache/commons/imaging/roundtrip/NullParametersRoundtripTest.java +++ b/src/test/java/org/apache/commons/imaging/roundtrip/NullParametersRoundtripTest.java @@ -43,12 +43,12 @@ public class NullParametersRoundtripTest extends RoundtripBase { Imaging.writeImage(testImage, byteArrayOutputStream, formatInfo.format); temp1 = byteArrayOutputStream.toByteArray(); } - final String filename = "nullParameters." + formatInfo.format.getDefaultExtension(); - Imaging.getImageInfo(new ByteArrayInputStream(temp1), filename); - Imaging.getImageSize(new ByteArrayInputStream(temp1), filename); - Imaging.getMetadata(new ByteArrayInputStream(temp1), filename); - Imaging.getIccProfile(new ByteArrayInputStream(temp1), filename); - final BufferedImage imageRead = Imaging.getBufferedImage(new ByteArrayInputStream(temp1), filename); + final String fileName = "nullParameters." + formatInfo.format.getDefaultExtension(); + Imaging.getImageInfo(new ByteArrayInputStream(temp1), fileName); + Imaging.getImageSize(new ByteArrayInputStream(temp1), fileName); + Imaging.getMetadata(new ByteArrayInputStream(temp1), fileName); + Imaging.getIccProfile(new ByteArrayInputStream(temp1), fileName); + final BufferedImage imageRead = Imaging.getBufferedImage(new ByteArrayInputStream(temp1), fileName); assertNotNull(imageRead); }