Index: applications/editors/josm/plugins/photo_geotagging/test/unit/org/openstreetmap/josm/plugins/photo_geotagging/ExifGPSTaggerTest.java
===================================================================
--- applications/editors/josm/plugins/photo_geotagging/test/unit/org/openstreetmap/josm/plugins/photo_geotagging/ExifGPSTaggerTest.java	(revision 36436)
+++ applications/editors/josm/plugins/photo_geotagging/test/unit/org/openstreetmap/josm/plugins/photo_geotagging/ExifGPSTaggerTest.java	(revision 36437)
@@ -5,10 +5,9 @@
 import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
 import static org.junit.jupiter.api.Assertions.assertEquals;
-import static org.junit.jupiter.api.Assertions.assertFalse;
 
 import java.io.ByteArrayOutputStream;
 import java.io.File;
+import java.io.IOException;
 import java.time.Instant;
-import java.util.Scanner;
 
 import org.apache.commons.imaging.Imaging;
@@ -17,5 +16,5 @@
 import org.apache.commons.imaging.formats.tiff.TiffImageMetadata;
 import org.apache.commons.imaging.formats.tiff.write.TiffOutputSet;
-import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Assumptions;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.io.TempDir;
@@ -59,5 +58,4 @@
 
     @Test
-    @Disabled("To enable after https://josm.openstreetmap.de/ticket/11902 is fixed")
     void testTicket11902() throws Exception {
         final File in = new File(TestUtils.getTestDataRoot(), "IMG_7250_small.JPG");
@@ -65,8 +63,11 @@
         final ImageEntry image = newImageEntry("test", 12d, 34d, Instant.now(), 12.34d, Math.E, Math.PI);
         ExifGPSTagger.setExifGPSTag(in, out, image, true);
-        final Process jhead = Runtime.getRuntime().exec(new String[]{"jhead", out.getAbsolutePath()});
-        final String stdout = new Scanner(jhead.getErrorStream()).useDelimiter("\\A").next();
-        System.out.println(stdout);
-        assertFalse(stdout.contains("Suspicious offset of first Exif IFD value"));
+        try {
+            final Process jhead = Runtime.getRuntime().exec(new String[]{"jhead", out.getAbsolutePath()});
+            assertEquals(jhead.getErrorStream().available(), 0);
+        } catch (IOException e) { /* jhead not installed */
+            System.out.println(e);
+            Assumptions.assumeTrue(false);
+        }
     }
 
