Skip to content

Commit 8d1fcc4

Browse files
changed length and breadth to l_gal and b_gal respectively
1 parent 76af875 commit 8d1fcc4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

astroquery/simbad/tests/test_simbad.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ def test_get_frame_coordinates(coordinates, expected_frame):
113113
actual_frame = simbad.core._get_frame_coords(coordinates)[2]
114114
assert actual_frame == expected_frame
115115
if actual_frame == 'GAL':
116-
length, breadth = simbad.core._get_frame_coords(coordinates)[:2]
117-
np.testing.assert_almost_equal(float(length) % 360, -67.02084 % 360)
118-
np.testing.assert_almost_equal(float(breadth), -29.75447)
116+
l_gal, b_gal = simbad.core._get_frame_coords(coordinates)[:2]
117+
np.testing.assert_almost_equal(float(l_gal) % 360, -67.02084 % 360)
118+
np.testing.assert_almost_equal(float(b_gal), -29.75447)
119119

120120

121121
def test_parse_result():

0 commit comments

Comments
 (0)