Index: applications/editors/josm/plugins/pdfimport/test/unit/org/openstreetmap/josm/plugins/pdfimport/pdfbox/PDFParserTest.java
===================================================================
--- applications/editors/josm/plugins/pdfimport/test/unit/org/openstreetmap/josm/plugins/pdfimport/pdfbox/PDFParserTest.java	(revision 36039)
+++ applications/editors/josm/plugins/pdfimport/test/unit/org/openstreetmap/josm/plugins/pdfimport/pdfbox/PDFParserTest.java	(revision 36064)
@@ -2,15 +2,16 @@
 package org.openstreetmap.josm.plugins.pdfimport.pdfbox;
 
-import static org.junit.Assert.assertEquals;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
 
 import java.awt.Rectangle;
 import java.io.File;
 
-import org.junit.Test;
+import org.junit.jupiter.api.Test;
 import org.openstreetmap.josm.TestUtils;
 import org.openstreetmap.josm.gui.progress.NullProgressMonitor;
 import org.openstreetmap.josm.plugins.pdfimport.PathOptimizer;
 
-public class PDFParserTest {
+class PDFParserTest {
 
     private PathOptimizer parse(String fileName) throws Exception {
@@ -22,5 +23,5 @@
 
     @Test
-    public void testParse9053() throws Exception {
+    void testParse9053() throws Exception {
         PathOptimizer data = parse(TestUtils.getRegressionDataFile(9053, "testpdf.pdf"));
         assertEquals(0, data.bounds.getMinX(), 0);
@@ -33,5 +34,5 @@
 
     @Test
-    public void testParse12176() throws Exception {
+    void testParse12176() throws Exception {
         PathOptimizer data = parse(TestUtils.getRegressionDataFile(12176, "LYD_Etage_0.pdf"));
         assertEquals(new Rectangle(595, 842), data.bounds);
