Unused variable fix

This commit is contained in:
Giebisch 2023-02-06 14:09:53 +01:00
parent 248eab22ed
commit 21575fbf3f

View file

@ -263,7 +263,7 @@ class BookViews(TestCase):
"""make sure the endposition is served as well""" """make sure the endposition is served as well"""
view = views.Book.as_view() view = views.Book.as_view()
quote = models.Quotation.objects.create( _ = models.Quotation.objects.create(
user=self.local_user, user=self.local_user,
book=self.book, book=self.book,
content="hi", content="hi",