Skip to content

Commit

Permalink
mvn spotless:apply
Browse files Browse the repository at this point in the history
  • Loading branch information
phanecak-maptiler committed Nov 8, 2023
1 parent 0d990d9 commit 181e30c
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/test/java/org/openmaptiles/layers/TransportationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1363,24 +1363,24 @@ void testIssue58() {
// test subject: https://www.openstreetmap.org/way/222564359
// note: "name:es" used instead of "name:ar" since we've setup only "de" and "es" for unit tests
FeatureCollector result = process(lineFeature(Map.of(
"name", "איילון דרום",
"name:es", "أيالون جنوب",
"name:en", "Ayalon South",
"highway", "motorway"
"name", "איילון דרום",
"name:es", "أيالون جنوب",
"name:en", "Ayalon South",
"highway", "motorway"
)));
assertFeatures(4, List.of(Map.of(
"_layer", "transportation",
"_type", "line",
"class", "motorway"
"_layer", "transportation",
"_type", "line",
"class", "motorway"
), Map.of(
"_layer", "transportation_name",
"_type", "line",
"class", "motorway",
"name", "איילון דרום",
"name_int", "Ayalon South",
"name:latin", "Ayalon South",
"name:es", "أيالون جنوب",
"name:en", "Ayalon South"
"_layer", "transportation_name",
"_type", "line",
"class", "motorway",
"name", "איילון דרום",
"name_int", "Ayalon South",
"name:latin", "Ayalon South",
"name:es", "أيالون جنوب",
"name:en", "Ayalon South"
)), result);
}
}

0 comments on commit 181e30c

Please sign in to comment.