Open JasonBernstein1 opened 2 months ago
The test_musun() test in tests/test_orbit.py currently fails because the module ssapy.constants has no attribute GM_SUN. This pull request fixes the test so that it passes by replacing ssapy.constants.GM_SUN with ssapy.constants.SUN_MU.
test_musun()
ssapy.constants
GM_SUN
ssapy.constants.GM_SUN
ssapy.constants.SUN_MU
The
test_musun()
test in tests/test_orbit.py currently fails because the modulessapy.constants
has no attributeGM_SUN
. This pull request fixes the test so that it passes by replacingssapy.constants.GM_SUN
withssapy.constants.SUN_MU
.