From b7eca72d9d835fc8f03c0db5faf54e5ca6f03292 Mon Sep 17 00:00:00 2001 From: Alex Morling Date: Mon, 20 May 2024 15:53:58 +0200 Subject: [PATCH] Fix a comment --- tests/test_astronomy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_astronomy.py b/tests/test_astronomy.py index 9172807b..8aae21e0 100644 --- a/tests/test_astronomy.py +++ b/tests/test_astronomy.py @@ -15,7 +15,7 @@ def test_to_EarthLocation(movebank_relocations): proj_to="+proj=geocent +ellps=WGS84 +datum=WGS84 +units=m +no_defs", ) - # Check the projected values in the + # Check the projected values in the returned EarthLocation are what we expect test_val = transform.transform(xx=test_point.x, yy=test_point.y, zz=0) assert test_val[0] == transformed[0].x.value assert test_val[1] == transformed[0].y.value