Skip to content

Commit

Permalink
Fix style (pair session)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcamron committed Jun 25, 2024
1 parent 51cf86a commit 5eaabc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/io/test_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ def test_parse_wpc_surface_bulletin():

assert all(df.valid == datetime(2021, 6, 28, 18, 0, 0))

#testing coordinates with negative latitude values

def test_negative_lat_highres():
"""Test decoding of high res coordinates with negative latitude."""
coord = '-4920344'
lon, lat =_decode_coords(coord)
lon, lat = _decode_coords(coord)
assert lon == -034.4
assert lat == -49.2


def test_negative_lat():
"""Test decoding of coordinates with negative latitude."""
coord_4_digit = '-2378'
Expand Down

0 comments on commit 5eaabc1

Please sign in to comment.