Skip to content

Commit

Permalink
Improve a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
r-owen committed Jan 4, 2018
1 parent 68be177 commit 140c187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_spherePoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def testEquality(self):
point2 = SpherePoint(lon2, lat2)
if lon1 == lon2 and lat1 == lat2 and point1.isFinite() and point2.isFinite():
# note: the isFinite checks are needed because if longitude is infinite
# then the resulting point has nan as a longitude, due to wrapping
# then the resulting SpherePoint has nan as its longitude, due to wrapping
self.assertFalse(point2 != point1)
self.assertFalse(point1 != point2)
self.assertTrue(point2 == point1)
Expand Down

0 comments on commit 140c187

Please sign in to comment.