Skip to content

Commit

Permalink
minor fix "test data file path"
Browse files Browse the repository at this point in the history
  • Loading branch information
osundwajeff committed Sep 17, 2024
1 parent 06db3e2 commit ba06f7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion test/test_buffer_geom.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ def test_create_point_buffer(self):
"""
# Prepare test data
working_dir = os.path.dirname(__file__)
input_layer_path = os.path.join(working_dir, "test_data", "points", "points.shp")
input_layer_path = os.path.join(
working_dir, "test_data", "points", "points.shp"
)
output_path = os.path.join(working_dir, "output", "buffered_layer.shp")

# Ensure output directory exists
Expand Down
2 changes: 1 addition & 1 deletion test/test_index_score.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_generate_raster(self):
"""
# Prepare test data
working_dir = os.path.dirname(__file__)
boundary_path = os.path.join(working_dir, "data", "admin", "Admin0.shp")
boundary_path = os.path.join(working_dir, "test_data", "admin", "Admin0.shp")
output_path = os.path.join(working_dir, "output", "test_raster.tif")

# Ensure output directory exists
Expand Down

0 comments on commit ba06f7f

Please sign in to comment.