Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Nov 22, 2023
1 parent aad0d28 commit 96d07a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from pathlib import Path

import xarray
import numpy as np

from satip.utils import (
load_cloudmask_to_dataarray,
Expand All @@ -39,7 +40,6 @@ def setUp(self) -> None: # noqa D102
user_key=USER_KEY,
user_secret=USER_SECRET,
data_dir=os.getcwd(),
logger_name="Plotting_test",
)

# Download one set of RSS data and one cloudmask and store them on disk:
Expand Down Expand Up @@ -98,7 +98,7 @@ def test_save_dataarray_to_zarr(self): # noqa D102
self.assertEqual(1, len(list(glob.glob(zarr_path))))

def test_data_quality_filter(self):
test_dataset_zeros = xarray.Dataset({
test = xarray.Dataset({
"data": (("time", "y", "x"), np.zeros(100, 100, 100))
})

Expand Down

0 comments on commit 96d07a7

Please sign in to comment.