Skip to content

Commit 5ce6ac4

Browse files
committed
TST: updating tests
1 parent 0b7654d commit 5ce6ac4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

astroquery/ipac/irsa/tests/test_irsa_remote.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,17 @@ def test_list_columns(self):
7272
def test_list_catalogs(self):
7373
catalogs = Irsa.list_catalogs()
7474
# Number of available catalogs may change over time, test only for significant drop.
75-
# (at the time of writing there are 645 tables in the list).
76-
assert len(catalogs) > 640
75+
# (at the time of writing there are 521 catalogs in the list).
76+
assert len(catalogs) > 520
7777
assert isinstance(catalogs, dict)
7878

7979
catalogs_full = Irsa.list_catalogs(full=True)
8080
assert isinstance(catalogs_full, Table)
8181

8282
def test_list_catalogs_filter(self):
83-
spitzer_catalogs = Irsa.list_catalogs(filter='allwise')
83+
allwise_catalogs = Irsa.list_catalogs(filter='allwise')
8484

85-
assert len(spitzer_catalogs) == 13
85+
assert len(allwise_catalogs) == 4
8686

8787
def test_list_catalogs_metadata(self):
8888
catalogs = Irsa.list_catalogs(filter='wise')

0 commit comments

Comments
 (0)