diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-23 15:29:48 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-23 15:29:48 -0700 |
commit | 1b28ba68e3b25a0cded2e88b88134d8d332f8d96 (patch) | |
tree | 31116c9a16279efecc1dbec998713a1631634ae0 /python/tests/api_annotations.py | |
parent | 5c39fa4b9a2c43d94d1eef68ac24f1d0099d219a (diff) | |
download | fatcat-1b28ba68e3b25a0cded2e88b88134d8d332f8d96.tar.gz fatcat-1b28ba68e3b25a0cded2e88b88134d8d332f8d96.zip |
fix actual typo in tests (caught by lint)
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" |