You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following passes in the test suite without issues (pytest astroquery/nist/tests/test_nist_remote.py::TestNist::test_query -R), but has different result when running directly in a python session. Not sure the reason yet, but it can be investigated along with #2920
from astropy import units as u
from astroquery.nist import Nist
result = Nist.query(4000 * u.AA, 7000 * u.AA)
assert set(result['TP'].filled()) == set(['T8637', 'T7771', 'N/A'])
The following passes in the test suite without issues (
pytest astroquery/nist/tests/test_nist_remote.py::TestNist::test_query -R
), but has different result when running directly in a python session. Not sure the reason yet, but it can be investigated along with #2920Note the extra
'T7651'
in the local results:The text was updated successfully, but these errors were encountered: