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 cacba653 Sort members
cacba653 is described below

commit cacba6532fbd095b561566ac8ee4a9f1901d8c35
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Nov 27 08:37:51 2023 -0500

    Sort members
---
 .../commons/imaging/formats/tiff/TiffReadImageInfoTest.java    | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/imaging/formats/tiff/TiffReadImageInfoTest.java
 
b/src/test/java/org/apache/commons/imaging/formats/tiff/TiffReadImageInfoTest.java
index b99fb498..76e01c8e 100644
--- 
a/src/test/java/org/apache/commons/imaging/formats/tiff/TiffReadImageInfoTest.java
+++ 
b/src/test/java/org/apache/commons/imaging/formats/tiff/TiffReadImageInfoTest.java
@@ -43,6 +43,11 @@ public class TiffReadImageInfoTest extends TiffBaseTest {
         {"14/TestJpegStrips.tiff", "Color Type", "YCbCr"}
     };
 
+    private File getTiffFile(String name) {
+        final File tiffFolder = new 
File(ImagingTestConstants.TEST_IMAGE_FOLDER, "tiff");
+        return new File(tiffFolder, name);
+    }
+
     /**
      * Gets the value for the target data field within the ImageInfo string.
      * This method expects data fields to be given in the form:
@@ -69,11 +74,6 @@ public class TiffReadImageInfoTest extends TiffBaseTest {
         return s.substring(j + 1, k).trim();
     }
 
-    private File getTiffFile(String name) {
-        final File tiffFolder = new 
File(ImagingTestConstants.TEST_IMAGE_FOLDER, "tiff");
-        return new File(tiffFolder, name);
-    }
-
     @Test
     public void testImageInfoElements() throws Exception {
         for (String[] testTarget : testSet) {

Reply via email to