diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-23 14:24:47 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-23 14:24:50 -0800 |
commit | f99b68aca1ac2cdb4c06207fd43310bd1a741cf7 (patch) | |
tree | c64fa14dda3134778bcca0718d54775ac90ff4b1 /python/tests/import_matched.py | |
parent | e0f70bbbcbcb6232cfb508ad5c0ae637391c4871 (diff) | |
download | fatcat-f99b68aca1ac2cdb4c06207fd43310bd1a741cf7.tar.gz fatcat-f99b68aca1ac2cdb4c06207fd43310bd1a741cf7.zip |
improve changelog tests
Diffstat (limited to 'python/tests/import_matched.py')
-rw-r--r-- | python/tests/import_matched.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/tests/import_matched.py b/python/tests/import_matched.py index a58c402f..22bc45ad 100644 --- a/python/tests/import_matched.py +++ b/python/tests/import_matched.py @@ -15,13 +15,14 @@ def test_matched_importer_batch(matched_importer): JsonLinePusher(matched_importer, f).run() def test_matched_importer(matched_importer): + last_index = matched_importer.api.get_changelog(limit=1)[0].index with open('tests/files/example_matched.json', 'r') as f: matched_importer.bezerk_mode = True JsonLinePusher(matched_importer, f).run() # fetch most recent editgroup - changes = matched_importer.api.get_changelog(limit=1) - eg = changes[0].editgroup + change = matched_importer.api.get_changelog_entry(index=last_index+1) + eg = change.editgroup assert eg.description assert "file-to-release" in eg.description.lower() assert eg.extra['git_rev'] |