Skip to content

Commit

Permalink
Fix variable name overwriting module name
Browse files Browse the repository at this point in the history
  • Loading branch information
pnuu committed Apr 24, 2024
1 parent a5a9815 commit aa18b7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions satpy/tests/reader_tests/test_seviri_l1b_icare.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ def test_load_dataset_vis(self):
datasets = r.load(["VIS008"])
assert len(datasets) == 1
for v in datasets.values():
dt = dt.datetime(2004, 12, 29, 12, 27, 44)
assert v.attrs["end_time"] == dt
date = dt.datetime(2004, 12, 29, 12, 27, 44)
assert v.attrs["end_time"] == date
assert v.attrs["calibration"] == "reflectance"

def test_load_dataset_ir(self):
Expand Down

0 comments on commit aa18b7f

Please sign in to comment.