Skip to content

Commit

Permalink
add missing param in test
Browse files Browse the repository at this point in the history
  • Loading branch information
dfguerrerom committed Sep 20, 2024
1 parent 0417909 commit a9491b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/test_gee.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def test_download_image(alert):
alert.reset_progress(len(ee_buffers), "Progress")

ee_tasks, _ = get_ee_tasks(
[year], ee_buffers, descriptions, sources, bands, tmp_dir
[year], ee_buffers, descriptions, sources, bands, tmp_dir, alert
)

# Get the first year
Expand Down Expand Up @@ -183,7 +183,7 @@ def test_download_image(alert):
alert.reset_progress(len(ee_buffers), "Progress")

ee_tasks, _ = get_ee_tasks(
[year], ee_buffers, descriptions, sources, bands, tmp_dir
[year], ee_buffers, descriptions, sources, bands, tmp_dir, alert
)

# Get the first year
Expand All @@ -208,7 +208,7 @@ def test_download_image(alert):
alert.reset_progress(len(ee_buffers), "Progress")

ee_tasks, _ = get_ee_tasks(
[year], ee_buffers, descriptions, sources, bands, tmp_dir
[year], ee_buffers, descriptions, sources, bands, tmp_dir, alert
)

# Get the first year
Expand Down
2 changes: 1 addition & 1 deletion test/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test_enhance_band(alert):
alert.reset_progress(len(ee_buffers), "Progress")

ee_tasks, _ = get_ee_tasks(
[year], ee_buffers, descriptions, sources, bands, tmp_dir
[year], ee_buffers, descriptions, sources, bands, tmp_dir, alert
)

# Get the first year
Expand Down

0 comments on commit a9491b1

Please sign in to comment.