Skip to content

Commit

Permalink
BUG: fix test dates
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Oct 2, 2023
1 parent 857d848 commit 7ba9ffb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pysatNASA/instruments/maven_sep.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
::
import pysat
insitu = pysat.Instrument(platform='maven', name='sep', inst_id = 's1')
insitu = pysat.Instrument(platform='maven', name='sep', inst_id='s1')
insitu.download(dt.datetime(2020, 1, 1), dt.datetime(2020, 1, 31))
insitu.load(2020, 1, use_header = True)
insitu.load(2020, 1, use_header=True)
"""

import datetime as dt
Expand All @@ -49,7 +50,7 @@
# ----------------------------------------------------------------------------
# Instrument test attributes

_test_dates = {'': {'': dt.datetime(2020, 1, 1)}}
_test_dates = {id: {'': dt.datetime(2020, 1, 1)} for id in inst_ids.keys()}

# ----------------------------------------------------------------------------
# Instrument methods
Expand Down

0 comments on commit 7ba9ffb

Please sign in to comment.