Skip to content

Commit 89e7243

Browse files
committed
Fix remote test to test for the expected return type
1 parent f99e1ba commit 89e7243

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

astroquery/sdss/tests/test_sdss_remote.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ def test_query_crossid(self):
176176
assert query2['objID'][0] == query1['objID'][0] == query2['objID'][1]
177177

178178
def test_spectro_query_crossid(self):
179-
query1 = sdss.SDSS.query_crossid_async(
179+
query1 = sdss.SDSS.query_crossid(
180180
self.coords, specobj_fields=['specObjID', 'z'], cache=False)
181-
query2 = sdss.SDSS.query_crossid_async(
181+
query2 = sdss.SDSS.query_crossid(
182182
[self.coords, self.coords],
183183
specobj_fields=['specObjID', 'z'],
184184
cache=False)

0 commit comments

Comments
 (0)