Ignore:
Timestamp:
2020-02-05T19:53:04+01:00 (4 years ago)
Author:
simon04
Message:

fix #18577 - Update opening_hours.js

File:
1 edited

Legend:

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

    r15318 r15815  
    9292        final List<OpeningHourTest.OpeningHoursTestError> errors = openingHourTest.checkOpeningHourSyntax(key, "Mo-Tue");
    9393        assertThat(errors, hasSize(2));
    94         assertEquals(key + " - Mo-Tue <--- (Please use the abbreviation \"Tu\" for \"tue\".)", errors.get(0).getMessage());
     94        assertEquals(key + " - Mo-Tue <--- (Please use the English abbreviation \"Tu\" for \"tue\".)", errors.get(0).getMessage());
    9595        assertEquals(Severity.WARNING, errors.get(0).getSeverity());
    9696        assertEquals(key +
    9797                " - Mo-Tue <--- (This rule is not very explicit because there is no time selector being used."+
     98                " A time selector is the part specifying hours when the object is opened, for example \"10:00-19:00\"."+
    9899                " Please add a time selector to this rule or use a comment to make it more explicit.)", errors.get(1).getMessage());
    99100        assertEquals(Severity.WARNING, errors.get(1).getSeverity());
     
    243244        Logging.clearLastErrorAndWarnings();
    244245        assertTrue(openingHourTest.checkOpeningHourSyntax("opening_hours", "SH off").isEmpty());
    245         List<String> errors = Logging.getLastErrorAndWarnings();
    246         assertFalse(errors.isEmpty());
    247         assertTrue(errors.get(0), errors.get(0).contains("no SH definition"));
    248246    }
    249247}
Note: See TracChangeset for help on using the changeset viewer.