@@ -429,7 +429,7 @@ Query without saving results in a file:
429
429
>>> from astroquery.cadc import Cadc
430
430
>>> cadc = Cadc()
431
431
>>> results = cadc.exec_sync(" SELECT top 100 observationID, intent FROM caom2.Observation" )
432
- >>> print (results)
432
+ >>> print (results) # doctest: +IGNORE_OUTPUT
433
433
observationID intent
434
434
---------------------------------- -----------
435
435
VLASS2.2.T18t28.J204443+293000 science
@@ -473,7 +473,7 @@ More details about temporary table upload can be found in the IVOA TAP specifica
473
473
>>> # save a few observations on a local file
474
474
>>> results = cadc.exec_sync(" SELECT TOP 3 observationID FROM caom2.Observation" ,
475
475
... output_file= ' my_observations.xml' )
476
- >>> print (results)
476
+ >>> print (results) # doctest: +IGNORE_OUTPUT
477
477
observationID
478
478
----------------------------------
479
479
c13a_060826_044314_ori
@@ -482,8 +482,8 @@ More details about temporary table upload can be found in the IVOA TAP specifica
482
482
>>> # now use them to join with the remote table
483
483
>>> results = cadc.exec_sync(" SELECT o.observationID, intent FROM caom2.Observation o "
484
484
... " JOIN tap_upload.test_upload tu ON o.observationID=tu.observationID" ,
485
- ... uploads= {' test_upload' : ' my_datasets .xml' })
486
- >>> print (results)
485
+ ... uploads= {' test_upload' : ' my_observations .xml' })
486
+ >>> print (results) # doctest: +IGNORE_OUTPUT
487
487
observationID intent
488
488
---------------------------------- -------
489
489
c13a_060826_044314_ori science
0 commit comments