diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-16 13:53:15 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-21 11:41:29 -0700 |
commit | 6ff79f47c7c7ae27b28685674672e58b7dd4d271 (patch) | |
tree | 2470f89de864207da8ccc92151cb35d5e20ba21b /python/tests | |
parent | 300665927f578151321b0d91b28f8aadffcf227d (diff) | |
download | fatcat-6ff79f47c7c7ae27b28685674672e58b7dd4d271.tar.gz fatcat-6ff79f47c7c7ae27b28685674672e58b7dd4d271.zip |
tweaks to new imports/tests
Diffstat (limited to 'python/tests')
-rw-r--r-- | python/tests/import_arxiv.py | 2 | ||||
-rw-r--r-- | python/tests/import_pubmed.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/python/tests/import_arxiv.py b/python/tests/import_arxiv.py index 726bafc5..8d91be10 100644 --- a/python/tests/import_arxiv.py +++ b/python/tests/import_arxiv.py @@ -52,7 +52,7 @@ def test_arxiv_xml_parse(arxiv_importer): assert r1.title == "Martingale theory for housekeeping heat" assert r1.subtitle == None assert r1.original_title == None - assert r1.release_type == "article-journal" + assert r1.release_type == "article" assert r1.release_stage == "submitted" assert r2.release_stage == "published" assert r1.license_slug == "ARXIV-NED-1.0" diff --git a/python/tests/import_pubmed.py b/python/tests/import_pubmed.py index eacc3815..05a77599 100644 --- a/python/tests/import_pubmed.py +++ b/python/tests/import_pubmed.py @@ -21,7 +21,7 @@ def test_pubmed_importer(pubmed_importer): with open('tests/files/pubmedsample_2019.xml', 'r') as f: pubmed_importer.bezerk_mode = True counts = Bs4XmlFilePusher(pubmed_importer, f, "PubmedArticle").run() - assert counts['insert'] == 1 + assert counts['insert'] == 176 assert counts['exists'] == 0 assert counts['skip'] == 0 @@ -39,7 +39,7 @@ def test_pubmed_importer(pubmed_importer): pubmed_importer.reset() counts = Bs4XmlFilePusher(pubmed_importer, f, "PubmedArticle").run() assert counts['insert'] == 0 - assert counts['exists'] == 1 + assert counts['exists'] == 176 assert counts['skip'] == 0 assert last_index == pubmed_importer.api.get_changelog(limit=1)[0].index |