Skip to content

Commit

Permalink
Fix a expected value
Browse files Browse the repository at this point in the history
  • Loading branch information
ebocher committed Nov 8, 2023
1 parent cb6e219 commit b46ddd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class InputDataFormattingTest {
//Sea/Land mask
String inputSeaLandTableName = OSM.InputDataFormatting.formatSeaLandMask(h2GIS, extractData.coastline, zoneEnvelopeTableName)
assertEquals(2, h2GIS.getTable(inputSeaLandTableName).getRowCount())
assertTrue h2GIS.firstRow("select count(*) as count from ${inputSeaLandTableName} where type='land'").count == 3
assertTrue h2GIS.firstRow("select count(*) as count from ${inputSeaLandTableName} where type='land'").count == 1
h2GIS.getTable(inputSeaLandTableName).save(new File(folder, "osm_sea_land.geojson").getAbsolutePath(), true)
}

Expand Down

0 comments on commit b46ddd8

Please sign in to comment.