diff --git a/tests/api_resolver_test.py b/tests/api_resolver_test.py index 19b98aad..ce1dbea1 100644 --- a/tests/api_resolver_test.py +++ b/tests/api_resolver_test.py @@ -131,7 +131,7 @@ def test_simbad_resolver() -> None: cols = [ 'name', 'oid', 'oname', 'otype', 'jpos', 'jradeg', 'jdedeg', - 'refPos', 'Vel', 'MType', 'nrefs' + 'refPos', 'MType', 'nrefs' ] for col in cols: assert col in pdf.columns, [col, pdf.columns] diff --git a/tests/api_ssocand_test.py b/tests/api_ssocand_test.py index d2792f67..35a7a824 100644 --- a/tests/api_ssocand_test.py +++ b/tests/api_ssocand_test.py @@ -117,13 +117,13 @@ def test_time_boundaries() -> None: >>> test_time_boundaries() """ pdf = ssocandsearch( - kind='lightcurves', start_date='2020-01-01', stop_date='2020-12-31' + kind='lightcurves', start_date='2023-01-01', stop_date='2023-12-31' ) assert not pdf.empty - assert np.alltrue(pdf['d:jd'].values >= Time('2020-01-01', format='iso').jd) - assert np.alltrue(pdf['d:jd'].values <= Time('2020-12-31', format='iso').jd) + assert np.alltrue(pdf['d:jd'].values >= Time('2023-01-01', format='iso').jd) + assert np.alltrue(pdf['d:jd'].values <= Time('2023-12-31', format='iso').jd) if __name__ == "__main__":