Workaround MapWithAI timeout issues by decreasing size of download area in test

Signed-off-by: Taylor Smock <taylor.smock@kaart.com>
pull/1/head
Taylor Smock 2019-12-12 12:54:53 -07:00
rodzic 38399f73cc
commit 2d97022ee2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 625F6A74A3E4311A
2 zmienionych plików z 33 dodań i 2 usunięć

File diff suppressed because one or more lines are too long

Wyświetl plik

@ -67,8 +67,11 @@ public class MapWithAIDownloadReaderTest {
@Test @Test
public void testDoDownload() { public void testDoDownload() {
MapWithAIDownloadReader reader = new MapWithAIDownloadReader(); MapWithAIDownloadReader reader = new MapWithAIDownloadReader();
DownloadSettings settings = new DownloadSettings( // TODO revert commit that adds these lines as soon as MapWithAI fixes timeout
new Bounds(39.0239848, -108.4522247, 39.1066201, -108.3368683), false, false); // issue see
// https://facebook.com/maps/ml_roads?conflate_with_osm=true&theme=ml_road_vector&collaborator=josm&token=ASb3N5o9HbX8QWn8G_NtHIRQaYv3nuG2r7_f3vnGld3KhZNCxg57IsaQyssIaEw5rfRNsPpMwg4TsnrSJtIJms5m&hash=ASawRla3rBcwEjY4HIY&bbox=-108.4522247,39.0239848,-108.3368683,39.1066201&result_type=road_building_vector_xml
DownloadSettings settings = new DownloadSettings(new Bounds(39.095376, -108.4495519, 39.0987811, -108.4422314),
false, false);
MapWithAIDownloadReader.MapWithAIDownloadData data = new MapWithAIDownloadReader.MapWithAIDownloadData( MapWithAIDownloadReader.MapWithAIDownloadData data = new MapWithAIDownloadReader.MapWithAIDownloadData(
MapWithAIPreferenceHelper.getMapWithAIUrl(), errors -> { MapWithAIPreferenceHelper.getMapWithAIUrl(), errors -> {
}); });