Skip to content

Commit be25bfa

Browse files
committed
Fix CBA test
1 parent 52ba5d1 commit be25bfa

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

cba_out.tif

2.32 KB
Binary file not shown.

tests/vector_processing/cell_based_association_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def test_cba():
121121
add_buffer=[False, 5000, 5000, False, 5000],
122122
)
123123
with rasterio.open(raster_path, "r") as one:
124-
with rasterio.open(str(output_file) + ".tif", "r") as two:
124+
with rasterio.open(output_file, "r") as two:
125125
one_array = one.read()
126126
two_array = two.read()
127127
numpy.testing.assert_equal(one_array, two_array)

0 commit comments

Comments
 (0)