Skip to content

Commit 050cefc

Browse files
committed
Fix TestAlma::test_download_and_extract
1 parent 176d128 commit 050cefc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/alma/tests/test_alma_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def test_download_and_extract(self, tmp_path, alma):
250250
[asdm_url], include_asdm=True, regex=r'.*\.py')
251251
delete_mock.assert_called_once_with(
252252
'cache_path/' + asdm_url.split('/')[-1])
253-
assert downloaded_asdm == [Path(tmp_path, 'foo.py')]
253+
assert Path(*downloaded_asdm) == Path(tmp_path, 'foo.py')
254254

255255
def test_doc_example(self, tmp_path, alma):
256256
alma.cache_location = tmp_path

0 commit comments

Comments
 (0)