diff options
author | bnewbold <bnewbold@archive.org> | 2020-04-24 00:07:45 +0000 |
---|---|---|
committer | bnewbold <bnewbold@archive.org> | 2020-04-24 00:07:45 +0000 |
commit | 661579dfc7025a9443bc41fd8f344096119cdfd3 (patch) | |
tree | 866ef4e21dc03b524b7db497eae1b31bbd099c42 /python/tests/import_datacite.py | |
parent | 5576efabea5c3e5db1a8b57aef3dc4b4006dd46c (diff) | |
parent | e0baeade7924019c5bbd27d9a7c116a1e26854fc (diff) | |
download | fatcat-661579dfc7025a9443bc41fd8f344096119cdfd3.tar.gz fatcat-661579dfc7025a9443bc41fd8f344096119cdfd3.zip |
Merge branch 'martin-datacite-fix-parse-record-int' into 'master'
datacite: fix type error
See merge request webgroup/fatcat!48
Diffstat (limited to 'python/tests/import_datacite.py')
-rw-r--r-- | python/tests/import_datacite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/import_datacite.py b/python/tests/import_datacite.py index 7fdd8230..c9210ea4 100644 --- a/python/tests/import_datacite.py +++ b/python/tests/import_datacite.py @@ -287,7 +287,7 @@ def test_datacite_conversions(datacite_importer): for now. """ datacite_importer.debug = True - for i in range(32): + for i in range(33): src = 'tests/files/datacite/datacite_doc_{0:02d}.json'.format(i) dst = 'tests/files/datacite/datacite_result_{0:02d}.json'.format(i) with open(src, 'r') as f: |