Skip to content

Commit

Permalink
ENH: Updating tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamTheisen committed Aug 21, 2024
1 parent 1e5081f commit cf5b9a5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/discovery/test_improve.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
import act


def test_get_airnow():
def test_get_improve():
ds = act.discovery.get_improve_data(site_id='244', start_date='1/1/2023', end_date='12/31/2023')

assert len(list(ds)) == 214
assert len(list(ds)) == 216
assert 'lat' in ds
assert 'lon' in ds
assert len(ds.time.values) == 121
assert 'aluminum_fine' in ds
assert ds['ammonium_nitrate_fine'].values[0] == 1.41363
Expand Down

0 comments on commit cf5b9a5

Please sign in to comment.