- Timestamp:
- 2017-01-18T08:51:08+01:00 (8 years ago)
- 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 14 14 import org.junit.Rule; 15 15 import org.junit.Test; 16 import org.openstreetmap.josm.Main; 16 17 import org.openstreetmap.josm.data.cache.ICachedLoaderListener.LoadResult; 17 18 import org.openstreetmap.josm.testutils.JOSMTestRules; … … 120 121 } catch (InterruptedException e1) { 121 122 // do nothing, still wait 123 Main.trace(e1); 122 124 } 123 125 } … … 141 143 } catch (InterruptedException e1) { 142 144 // do nothing, wait 145 Main.trace(e1); 143 146 } 144 147 } -
trunk/test/unit/org/openstreetmap/josm/data/validation/tests/RelationCheckerTest.java
r11475 r11479 154 154 r.addMember(new RelationMember("stop", createPrimitive("way no-rail-way=yes"))); 155 155 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)", 157 158 testRelation(r).get(0).getDescription()); 158 159
Note:
See TracChangeset
for help on using the changeset viewer.