Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
mraspaud committed Mar 19, 2024
1 parent 0064e21 commit 276aa7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions satpy/tests/reader_tests/test_avhrr_l1b_gaclac.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# satpy. If not, see <http://www.gnu.org/licenses/>.
"""Pygac interface."""

from datetime import datetime
from datetime import date, datetime
from unittest import TestCase, mock

import dask.array as da
Expand Down Expand Up @@ -190,7 +190,7 @@ def test_init_eosip(self):
fh = self._get_eosip_fh(filename, **kwargs)
assert fh.start_time < fh.end_time
assert fh.reader_class is reader_cls
assert fh.reader_kwargs["header_date"] > datetime.date(1994, 11, 15)
assert fh.reader_kwargs["header_date"] > date(1994, 11, 15)

def test_read_raw_data(self):
"""Test raw data reading."""
Expand Down

0 comments on commit 276aa7d

Please sign in to comment.