Changeset 11479 in josm


Ignore:
Timestamp:
2017-01-18T08:51:08+01:00 (7 years ago)
Author:
Don-vip
Message:

checkstyle

Location:
trunk/test/unit/org/openstreetmap/josm/data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJobTest.java

    r11473 r11479  
    1414import org.junit.Rule;
    1515import org.junit.Test;
     16import org.openstreetmap.josm.Main;
    1617import org.openstreetmap.josm.data.cache.ICachedLoaderListener.LoadResult;
    1718import org.openstreetmap.josm.testutils.JOSMTestRules;
     
    120121                } catch (InterruptedException e1) {
    121122                    // do nothing, still wait
     123                    Main.trace(e1);
    122124                }
    123125            }
     
    141143                } catch (InterruptedException e1) {
    142144                    // do nothing, wait
     145                    Main.trace(e1);
    143146                }
    144147            }
  • trunk/test/unit/org/openstreetmap/josm/data/validation/tests/RelationCheckerTest.java

    r11475 r11479  
    154154        r.addMember(new RelationMember("stop", createPrimitive("way no-rail-way=yes")));
    155155        assertEquals(1, testRelation(r).size());
    156         assertEquals("Type 'way' of relation member with role 'stop' does not match accepted types 'node' in template Public Transport Route (Rail)",
     156        assertEquals(
     157                "Type 'way' of relation member with role 'stop' does not match accepted types 'node' in template Public Transport Route (Rail)",
    157158                testRelation(r).get(0).getDescription());
    158159
Note: See TracChangeset for help on using the changeset viewer.