Fix wrong test.

This commit is contained in:
Olivier Mangin 2018-01-30 17:37:11 -05:00
parent 6ca4020627
commit c87b89bf10

View File

@ -19,7 +19,7 @@ class TestAuthorFilter(unittest.TestCase):
def test_fails_if_no_author(self):
no_doe = doe_paper.deepcopy()
no_doe.bibentry['author'] = []
no_doe.bibentry['Doe2013']['author'] = []
self.assertFalse(AuthorFilter('whatever')(no_doe))
def test_match_case(self):