|
9 | 9 | import static org.openstreetmap.josm.plugins.maproulette.util.RecordAssertion.assertRecordsEqual; |
10 | 10 |
|
11 | 11 | import java.time.Instant; |
| 12 | +import java.util.Collections; |
12 | 13 | import java.util.Map; |
13 | 14 |
|
14 | 15 | import org.junit.jupiter.api.Test; |
@@ -40,9 +41,12 @@ void testTaskParsing135045992() { |
40 | 41 | Instant.parse("2022-08-06T15:23:36.531Z"), 24092, "", new Point(36.0819446365856, -119.104608317353), |
41 | 42 | task.geometries(), |
42 | 43 | new OSMChange(new ElementCreate[0], |
43 | | - new ElementUpdate[] { new ElementUpdate(131190351L, OsmPrimitiveType.WAY, Integer.MIN_VALUE, |
44 | | - new ElementTagChange(Map.of("landuse", "farmland", "FMMP_modified", "yes"), |
45 | | - new String[0])) }), |
| 44 | + new ElementUpdate[] { |
| 45 | + new ElementUpdate(131190351L, OsmPrimitiveType.WAY, Integer.MIN_VALUE, |
| 46 | + new ElementTagChange(Map.of("landuse", "farmland", "FMMP_modified", "yes"), |
| 47 | + new String[0])), |
| 48 | + new ElementUpdate(131190351L, OsmPrimitiveType.WAY, Integer.MIN_VALUE, |
| 49 | + new ElementTagChange(Collections.emptyMap(), new String[] { "source" })) }), |
46 | 50 | TaskStatus.CREATED, null, null, null, |
47 | 51 | new TaskReviewFields(null, null, null, null, null, null, null, null, null, null), 0, -1L, null, null, |
48 | 52 | false, null, ""); |
|
0 commit comments