Skip to content

Commit

Permalink
adding another test
Browse files Browse the repository at this point in the history
  • Loading branch information
Clara Brasseur committed Mar 12, 2019
1 parent 152627d commit b4bbcd5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions astroquery/mast/tests/test_mast_remote.py
Expand Up @@ -147,6 +147,10 @@ def test_observations_query_criteria(self):
dataproduct_type="IMAGE", obstype="science")
assert (result["intentType"] == "science").all()

result = mast.Observations.query_criteria(objectname="M101",
dataproduct_type="IMAGE", obstype="cal")
assert (result["intentType"] == "calibration").all()

result = mast.Observations.query_criteria(objectname="M101",
dataproduct_type="IMAGE", intentType="calibration")
assert (result["intentType"] == "calibration").all()
Expand Down

0 comments on commit b4bbcd5

Please sign in to comment.