Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ElcoK committed Dec 18, 2023
1 parent ed7fce1 commit e16a895
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_RasterScanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ class TestRasterScanner(unittest.TestCase):
def test_raster_scanner(self):
# Define paths to example files
data_path = Path(__file__).parent.parent / 'data'
landuse_file = str(data_path / 'landuse' / 'landuse_map.tif')
hazard_file = str(data_path / 'hazard' / 'inundation_map.tif')
curve_path = str(data_path / 'curves' / 'curves.csv')
maxdam_path = str(data_path / 'curves' / 'maxdam.csv')
landuse_file = data_path / 'landuse' / 'landuse_map.tif'
hazard_file = data_path / 'hazard' / 'inundation_map.tif'
curve_path = data_path / 'curves' / 'curves.csv'
maxdam_path = data_path / 'curves' / 'maxdam.csv'

# Call the RasterScanner function
damage_df, damagemap, landuse_in, hazard = RasterScanner(
Expand Down

0 comments on commit e16a895

Please sign in to comment.