diff options
author | Martin Czygan <martin@archive.org> | 2020-07-24 10:11:37 +0000 |
---|---|---|
committer | Martin Czygan <martin@archive.org> | 2020-07-24 10:11:37 +0000 |
commit | 8b00843af1366cf019c896057706ace4afff27ba (patch) | |
tree | 86fc58bf26f07e272aa27e989f3ab6b4cfef2090 /python/tests/api_annotations.py | |
parent | 2170e5ff46dfb2bba9bf26196de3c3774c16cd4a (diff) | |
parent | fc93f35996cab23984d9a45f1a411b8776e437bf (diff) | |
download | fatcat-8b00843af1366cf019c896057706ace4afff27ba.tar.gz fatcat-8b00843af1366cf019c896057706ace4afff27ba.zip |
Merge branch 'bnewbold-more-lint-fixes' into 'master'
more lint fixes
See merge request webgroup/fatcat!69
Diffstat (limited to 'python/tests/api_annotations.py')
-rw-r--r-- | python/tests/api_annotations.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests/api_annotations.py b/python/tests/api_annotations.py index 0606b637..79acaa4b 100644 --- a/python/tests/api_annotations.py +++ b/python/tests/api_annotations.py @@ -30,5 +30,5 @@ def test_annotations(api): if thing.annotation_id == a[0].annotation_id: found = thing break - assert thing - assert thing.extra['thing'] == "thang" + assert found + assert found.extra['thing'] == "thang" |