Ignore:
Timestamp:
2014-03-21T17:31:18+01:00 (12 years ago)
Author:
Don-vip
Message:

fix #9778, fix #9806 - access OSM API and JOSM website in HTTPS by default + other HTTPS links where applicable + update CONTRIBUTION

File:
1 edited

Legend:

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

    r6881 r6920  
    4343    public void testCheckOpeningHourSyntax1() throws Exception {
    4444        final String key = "opening_hours";
    45         // frequently used tags according to http://taginfo.openstreetmap.org/keys/opening_hours#values
     45        // frequently used tags according to https://taginfo.openstreetmap.org/keys/opening_hours#values
    4646        assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "24/7"), isEmpty());
    4747        assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "Mo-Fr 08:30-20:00"), isEmpty());
     
    117117    public void testCheckServiceTimeSyntax1() throws Exception {
    118118        final String key = "service_times";
    119         // frequently used tags according to http://taginfo.openstreetmap.org/keys/service_times#values
     119        // frequently used tags according to https://taginfo.openstreetmap.org/keys/service_times#values
    120120        assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "Su 10:00", OpeningHourTest.CheckMode.BOTH), isEmpty());
    121121        assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "automatic", OpeningHourTest.CheckMode.BOTH), not(isEmpty()));
     
    131131    public void testCheckCollectionTimeSyntax1() throws Exception {
    132132        final String key = "collection_times";
    133         // frequently used tags according to http://taginfo.openstreetmap.org/keys/collection_times#values
     133        // frequently used tags according to https://taginfo.openstreetmap.org/keys/collection_times#values
    134134        assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "Mo-Sa 09:00", OpeningHourTest.CheckMode.BOTH), isEmpty());
    135135        assertThat(OPENING_HOUR_TEST.checkOpeningHourSyntax(key, "fixme", OpeningHourTest.CheckMode.BOTH), not(isEmpty()));
Note: See TracChangeset for help on using the changeset viewer.