Skip to content

Commit

Permalink
nooow is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ExpDev07 committed Mar 21, 2020
1 parent 2d1c262 commit dbc22e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_location.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ def test_location_class(mocked_timeline, test_id, country, country_code, provinc
longitude, confirmed_latest, deaths_latest, recovered_latest):

# id, country, province, coordinates, confirmed, deaths, recovered
coordinates = coordinates.Coordinates(latitude=latitude, longitude=longitude)
coords = coordinates.Coordinates(latitude=latitude, longitude=longitude)

# Timelines
confirmed = timeline.Timeline(confirmed_latest)
deaths = timeline.Timeline(deaths_latest)
recovered = timeline.Timeline(recovered_latest)

# Location.
location_obj = location.TimelinedLocation(test_id, country, province, coordinates, {
location_obj = location.TimelinedLocation(test_id, country, province, coords, {
'confirmed': confirmed,
'deaths' : deaths,
'recovered': recovered,
Expand Down

0 comments on commit dbc22e7

Please sign in to comment.