diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2019-12-27 00:51:01 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2019-12-27 00:51:01 +0100 |
commit | 6afc3e8d0e01cba781928dbc2bcb53d3c3ff71fd (patch) | |
tree | cecab3300e67be677694cfc87bdccd6871babe6c | |
parent | 8b447f75a38e595248bd065f74dc10a9ce918e99 (diff) | |
download | fatcat-6afc3e8d0e01cba781928dbc2bcb53d3c3ff71fd.tar.gz fatcat-6afc3e8d0e01cba781928dbc2bcb53d3c3ff71fd.zip |
datacite: fix harvest test
Produced messages should match:
jq '.data|length' tests/files/datacite_api.json
-rw-r--r-- | python/tests/harvest_datacite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/harvest_datacite.py b/python/tests/harvest_datacite.py index 5aaa8ac4..926d67ba 100644 --- a/python/tests/harvest_datacite.py +++ b/python/tests/harvest_datacite.py @@ -40,6 +40,6 @@ def test_datacite_harvest_date(mocker): # check that we published the expected number of DOI objects were published # to the (mock) kafka topic - assert harvester.producer.produce.call_count == 25 + assert harvester.producer.produce.call_count == 1 assert harvester.producer.flush.call_count == 1 assert harvester.producer.poll.called_once_with(0) |