Changeset 10739 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/imagery/WMSImagery.java
r10717 r10739 209 209 } 210 210 211 Main.info("GET " + getCapabilitiesUrl);212 211 final String incomingData = HttpClient.create(getCapabilitiesUrl).connect().fetchContent(); 213 212 Main.debug("Server response to Capabilities request:"); -
trunk/test/unit/org/openstreetmap/josm/actions/AddImageryLayerActionTest.java
r10705 r10739 24 24 /** 25 25 * We need prefs for this. We need platform for actions and the OSM API for checking blacklist. 26 * The timeout is set to default httpclient read timeout + connect timeout + a small delay to ignore 27 * common but harmless network issues. 26 28 */ 27 29 @Rule 28 30 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 29 public JOSMTestRules test = new JOSMTestRules().preferences().platform().fakeAPI().timeout( 15000);31 public JOSMTestRules test = new JOSMTestRules().preferences().platform().fakeAPI().timeout(45500); 30 32 31 33 /**
Note:
See TracChangeset
for help on using the changeset viewer.