Modify ↓
#15468 closed enhancement (fixed)
Use proper domain name (example.com) in tests
Reported by: | rorym | Owned by: | team |
---|---|---|---|
Priority: | minor | Milestone: | 17.10 |
Component: | Unit tests | Version: | |
Keywords: | Cc: |
Description
One part of the JOSM test suite uses something.com
as a domain name. However example.com is reserved as a domain for documentation. This should be used instead.
https://en.wikipedia.org/wiki/Example.com
-
test/unit/org/openstreetmap/josm/gui/layer/markerlayer/WebMarkerTest.java
34 34 public void testWebMarker() throws MalformedURLException { 35 35 WebMarker marker = new WebMarker( 36 36 LatLon.ZERO, 37 new URL("http:// something.com"),37 new URL("http://example.com"), 38 38 new MarkerLayer(new GpxData(), null, null, null), 39 39 1d, 2d); 40 40 marker.actionPerformed(null);
Attachments (0)
Change History (3)
comment:1 by , 7 years ago
Component: | Core → Unit tests |
---|---|
Priority: | normal → minor |
Type: | defect → enhancement |
comment:2 by , 7 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 by , 7 years ago
Milestone: | → 17.10 |
---|
Note:
See TracTickets
for help on using tickets.
In 13031/josm: