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 eed6d89 commit ee6d53bCopy full SHA for ee6d53b
astroquery/alma/tests/test_alma.py
@@ -381,7 +381,7 @@ def test_tap():
381
def test_get_data_info():
382
datalink_mock = Mock()
383
dl_result = Table.read(data_path('alma-datalink.xml'), format='votable')
384
- mock_response = Mock(table=dl_result)
+ mock_response = Mock(to_table=Mock(return_value=dl_result))
385
mock_response.status = ['OK']
386
datalink_mock.run_sync.return_value = mock_response
387
alma = Alma()
0 commit comments