Skip to content

Commit

Permalink
MAINT: use ndtesting
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Nov 30, 2023
1 parent bc54e41 commit 93f75dd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pysatSeasons/tests/test_avg.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ class TestXarrayBasics(TestBasics):

def setup_method(self):
"""Run before every method to create a clean testing setup."""
self.testInst = pysat.Instrument('pysat', 'testing_xarray',
clean_level='clean')
self.testInst = pysat.Instrument('pysat', 'ndtesting',
num_samples=86400, clean_level='clean')
self.bounds1 = (dt.datetime(2008, 1, 1), dt.datetime(2008, 1, 3))
self.bounds2 = (dt.datetime(2009, 1, 1), dt.datetime(2009, 1, 2))

Expand Down Expand Up @@ -191,8 +191,8 @@ class TestXarrayBasicsMeanBy(TestBasicsMeanBy):

def setup_method(self):
"""Run before every method to create a clean testing setup."""
self.testInst = pysat.Instrument('pysat', 'testing_xarray',
clean_level='clean')
self.testInst = pysat.Instrument('pysat', 'ndtesting',
num_samples=86400, clean_level='clean')
self.bounds1 = (dt.datetime(2008, 1, 1), dt.datetime(2008, 1, 3))
self.bounds2 = (dt.datetime(2009, 1, 1), dt.datetime(2009, 1, 2))

Expand All @@ -206,7 +206,7 @@ def setup_method(self):
"""Run before every method to create a clean testing setup."""

self.testInst = pysat.Instrument('pysat', 'ndtesting',
clean_level='clean')
num_samples=86400, clean_level='clean')
self.testInst.bounds = (dt.datetime(2008, 1, 1),
dt.datetime(2008, 2, 1))
self.dname = 'profiles'
Expand Down

0 comments on commit 93f75dd

Please sign in to comment.