diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-07-26 14:17:08 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-07-26 14:17:08 -0700 |
commit | bbdad7688b60de4cc5fb4e30ba80e73d2d2ac646 (patch) | |
tree | 1137feea89a05e7a71766f5fb8ba5530e14a3002 | |
parent | cbb61c2db0804e84112b2ca06bc188b76844bae0 (diff) | |
download | fatcat-scholar-bbdad7688b60de4cc5fb4e30ba80e73d2d2ac646.tar.gz fatcat-scholar-bbdad7688b60de4cc5fb4e30ba80e73d2d2ac646.zip |
fix failing test after clean_doi()
-rw-r--r-- | tests/test_refs_transform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_refs_transform.py b/tests/test_refs_transform.py index 7cd46e8..b923492 100644 --- a/tests/test_refs_transform.py +++ b/tests/test_refs_transform.py @@ -72,7 +72,7 @@ def test_transform_refs_crossref() -> None: assert refs[0].biblio.year == 2012 assert refs[0].biblio.pages == "1217" assert refs[0].biblio.volume == "136" - assert refs[0].biblio.doi == "10.5858/arpa.2012-0112-RA" + assert refs[0].biblio.doi == "10.5858/arpa.2012-0112-ra" assert refs[0].biblio.unstructured is None assert refs[6].biblio.title == "Advances in Laser Remote Sensing – Selected Papers Presented at the 20th International Laser Radar Conference" |