diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-10 18:06:12 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-10 18:06:23 -0700 |
commit | 5ec28e7657af82c3260fcf67db4e7b2ea4ba6a36 (patch) | |
tree | 6015f65d5d35a10144716e37217cc1f26164d744 /python/tests/importer.py | |
parent | 5aa20868e508de021dc6112e4fe0a58ad5d7dc0a (diff) | |
download | fatcat-5ec28e7657af82c3260fcf67db4e7b2ea4ba6a36.tar.gz fatcat-5ec28e7657af82c3260fcf67db4e7b2ea4ba6a36.zip |
fix python import of ORCIDs ending 'X'
Diffstat (limited to 'python/tests/importer.py')
-rw-r--r-- | python/tests/importer.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/tests/importer.py b/python/tests/importer.py index 4d49e794..22af37ed 100644 --- a/python/tests/importer.py +++ b/python/tests/importer.py @@ -29,6 +29,7 @@ def test_identifiers(): assert fi.is_doi("10.1234_56789") == False assert fi.is_orcid("0000-0003-3118-6591") == True + assert fi.is_orcid("0000-0003-3953-765X") == True assert fi.is_orcid("0000-00x3-3118-659") == False assert fi.is_orcid("0000-00033118-659") == False assert fi.is_orcid("0000-0003-3118-659.") == False |