Skip to content

Commit

Permalink
Add missing test values and fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrleeman committed Mar 19, 2018
1 parent 2cf5fa5 commit 1a9d221
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion siphon/tests/test_wyoming.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

@recorder.use_cassette('wyoming_sounding')
def test_wyoming():
"""Test that we are properly parsing data from the wyoming archive."""
"""Test that we are properly parsing data from the Wyoming archive."""
df = WyomingUpperAir.request_data(datetime(1999, 5, 4, 0), 'OUN')

assert_almost_equal(df['pressure'][5], 867.9, 2)
Expand Down Expand Up @@ -49,3 +49,5 @@ def test_high_alt_wyoming():
assert_almost_equal(df['dewpoint'][2], 3.9, 2)
assert_almost_equal(df['u_wind'][2], -0.42, 2)
assert_almost_equal(df['v_wind'][2], 5.99, 2)
assert_almost_equal(df['speed'][2], 6.0, 1)
assert_almost_equal(df['direction'][2], 176.0, 1)

0 comments on commit 1a9d221

Please sign in to comment.