Skip to content

Commit

Permalink
Fix precision test of reading in extended ground stations
Browse files Browse the repository at this point in the history
  • Loading branch information
snkas committed Oct 9, 2020
1 parent dfd539c commit 4181e46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions satgenpy/tests/test_ground_stations.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def test_ground_stations_normal(self):
self.assertEqual(1, len(ground_stations_extended))
self.assertEqual(0, ground_stations_extended[0]["gid"])
self.assertEqual("abc", ground_stations_extended[0]["name"])
self.assertEqual("33", ground_stations_extended[0]["latitude_degrees_str"])
self.assertEqual("11.0", ground_stations_extended[0]["longitude_degrees_str"])
self.assertEqual("33.000000", ground_stations_extended[0]["latitude_degrees_str"])
self.assertEqual("11.000000", ground_stations_extended[0]["longitude_degrees_str"])
self.assertEqual(77.0, ground_stations_extended[0]["elevation_m_float"])
self.assertTrue("cartesian_x" in ground_stations_extended[0])
self.assertTrue("cartesian_y" in ground_stations_extended[0])
Expand Down

0 comments on commit 4181e46

Please sign in to comment.