Changeset 16006 in josm for trunk/test/unit/org/openstreetmap/josm/actions
- Timestamp:
- 2020-03-03T02:12:44+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/actions/JoinAreasActionTest.java
r15883 r16006 146 146 147 147 /** 148 * Non-regression test which checks example files in data_nodist148 * Non-regression test which checks example files in nodist/data 149 149 * @throws Exception if an error occurs 150 150 */ … … 153 153 public void testExamples() throws Exception { 154 154 DataSet dsToJoin, dsExpected; 155 try (InputStream is = Files.newInputStream(Paths.get(" data_nodist/Join_Areas_Tests.osm"))) {155 try (InputStream is = Files.newInputStream(Paths.get("nodist/data/Join_Areas_Tests.osm"))) { 156 156 dsToJoin = OsmReader.parseDataSet(is, NullProgressMonitor.INSTANCE); 157 157 } 158 try (InputStream is = Files.newInputStream(Paths.get(" data_nodist/Join_Areas_Tests_joined.osm"))) {158 try (InputStream is = Files.newInputStream(Paths.get("nodist/data/Join_Areas_Tests_joined.osm"))) { 159 159 dsExpected = OsmReader.parseDataSet(is, NullProgressMonitor.INSTANCE); 160 160 }
Note:
See TracChangeset
for help on using the changeset viewer.