We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb23878 commit ba6183eCopy full SHA for ba6183e
astroquery/linelists/cdms/tests/test_cdms_remote.py
@@ -57,6 +57,11 @@ def test_ch3cn_negqn():
57
tbl = CDMS.get_molecule('041501')
58
fourtominusthree = tbl[(tbl['Q1'] == 4) & (tbl['Q2'] == -3)]
59
assert len(fourtominusthree) >= 1
60
+
61
+ # check specifically for -21, which is encoded as `b1`
62
+ twentytwominustwentyone = tbl[(tbl['Q1'] == 22) & (tbl['Q2'] == -21)]
63
+ assert len(twentytwominustwentyone) >= 1
64
65
assert tbl['TAG'][0] == -41501
66
67
0 commit comments