Changeset 19469 in josm


Ignore:
Timestamp:
2026-01-16T13:21:26+01:00 (23 hours ago)
Author:
stoecker
Message:

fix tests, see #24456

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/validation/tests/RelationCheckerTest.java

    r19467 r19469  
    131131
    132132        List<TestError> errors = testRelation(r);
    133         assertEquals(2, errors.size());
     133        assertEquals(3, errors.size());
    134134        assertEquals("Role 'substation' missing", errors.get(0).getDescription());
    135         assertEquals("Empty role found when expecting one of 'substation/section/tap'", errors.get(1).getDescription());
     135        assertEquals("Role 'section' missing", errors.get(1).getDescription());
     136        assertEquals("Empty role found when expecting one of 'substation/section/tap'", errors.get(2).getDescription());
     137       
    136138    }
    137139
Note: See TracChangeset for help on using the changeset viewer.