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 7ae83e3 commit 92b1ae0Copy full SHA for 92b1ae0
astroquery/astrometry_net/tests/test_astrometry_net_remote.py
@@ -119,6 +119,8 @@ def test_solve_image_detect_source_local():
119
expected_result = fits.getheader(os.path.join(DATA_DIR,
120
'thumbnail-wcs-sol-from-photutils.fit'))
121
for key in result:
122
+ if key == 'COMMENT' or key == 'HISTORY':
123
+ continue
124
try:
125
difference = expected_result[key] - result[key]
126
except TypeError:
@@ -152,6 +154,8 @@ def test_solve_timeout_behavior():
152
154
'test-wcs-sol.fit'))
153
155
156
157
158
159
160
161
0 commit comments