diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-22 10:13:04 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-22 10:13:04 -0700 |
commit | 7a25d96ea3b57170d1c13b2633eed99b536ee78d (patch) | |
tree | 062fa943e2576a8bca36e9db4466ea98658e889e /python/tests | |
parent | 1e2f95823bb292bbc3245f93c4e03e47517e2141 (diff) | |
download | fatcat-7a25d96ea3b57170d1c13b2633eed99b536ee78d.tar.gz fatcat-7a25d96ea3b57170d1c13b2633eed99b536ee78d.zip |
arxiv license slug shorter; fix test
Diffstat (limited to 'python/tests')
-rw-r--r-- | python/tests/import_arxiv.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests/import_arxiv.py b/python/tests/import_arxiv.py index bc4fca02..bbad8fa6 100644 --- a/python/tests/import_arxiv.py +++ b/python/tests/import_arxiv.py @@ -54,8 +54,8 @@ def test_arxiv_xml_parse(arxiv_importer): assert r1.original_title == None assert r1.release_type == "article" assert r1.release_stage == "submitted" - assert r2.release_stage == "published" - assert r1.license_slug == "ARXIV-NED-1.0" + assert r2.release_stage == "accepted" + assert r1.license_slug == "ARXIV-1.0" assert r1.version == "v1" assert r2.version == "v2" assert r1.ext_ids.arxiv == "1810.09584v1" |