Skip to content

Commit

Permalink
fixup! Issue #348 Improve "resample_spatial" metadata tracking in dry…
Browse files Browse the repository at this point in the history
…-run
  • Loading branch information
soxofaan committed Jan 23, 2025
1 parent 81d9ebf commit 75edaf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_views_execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def test_execute_resample_and_merge_cubes(api):
dummy = dummy_backend.get_collection("S2_FAPAR_CLOUDCOVER")
last_load_collection_call = dummy_backend.last_load_collection_call("S2_FAPAR_CLOUDCOVER")
assert last_load_collection_call.target_crs == CRS_UTM
assert last_load_collection_call.target_resolution == [10, 10]
assert last_load_collection_call.target_resolution == (10, 10)
assert dummy.merge_cubes.call_count == 1
assert dummy.resample_cube_spatial.call_count == 1
assert dummy.resample_cube_spatial.call_args.kwargs["method"] == "cubic"
Expand Down

0 comments on commit 75edaf8

Please sign in to comment.