Skip to content

Commit a10f569

Browse files
committed
TST: adding regression test
1 parent 9c024c5 commit a10f569

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

astroquery/ipac/nexsci/nasa_exoplanet_archive/tests/test_nasa_exoplanet_archive_remote.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,3 +185,10 @@ def test_format():
185185
with pytest.raises(InvalidQueryError) as error:
186186
NasaExoplanetArchive.query_object("HAT-P-11 b", format="json")
187187
assert "json" in str(error)
188+
189+
190+
@pytest.mark.remote_data
191+
def test_table_case_sensivity():
192+
# Regression test from #3090
193+
table = NasaExoplanetArchive.query_criteria(table='DI_STARS_EXEP', select='*')
194+
assert len(table) > 0

0 commit comments

Comments
 (0)