Skip to content

Commit 7717f9b

Browse files
committed
Minor test fixes
1 parent 729691c commit 7717f9b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/esa/hsa/hsa.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,9 @@ First retrieve the observation IDs based on a position on the sky. To achive thi
203203

204204
>>> from astroquery.esa.hsa import HSA
205205
>>>
206-
>>> HSA.query_hsa_tap("select top 10 observation_id from hsa.v_active_observation where contains(point('ICRS', hsa.v_active_observation.ra, hsa.v_active_observation.dec),circle('ICRS', 100.2417,9.895, 1.1))=1", output_format='csv', output_file='results.cvs')
206+
>>> HSA.query_hsa_tap("select top 10 observation_id from hsa.v_active_observation where "
207+
... "contains(point('ICRS', hsa.v_active_observation.ra, hsa.v_active_observation.dec), "
208+
... "circle('ICRS', 100.2417,9.895, 1.1))=1", output_format='csv', output_file='results.csv')
207209
<Table length=9>
208210
observation_id
209211
int64

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ filterwarnings =
4141
ignore::pytest.PytestUnraisableExceptionWarning
4242
ignore::numpy.VisibleDeprecationWarning
4343
ignore: unclosed file:ResourceWarning
44+
ignore:unclosed <ssl.SSLSocket:ResourceWarning
4445
ignore::UserWarning
4546
ignore::astroquery.exceptions.InputWarning
4647
ignore::astropy.utils.exceptions.AstropyDeprecationWarning

0 commit comments

Comments
 (0)