Some tests fixes

This commit is contained in:
Mouse Reeve 2021-12-30 11:07:04 -08:00
parent 975ef7d38e
commit 4de406afe1
3 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ class OpenLibraryImport(TestCase):
self.csv = open(datafile, "r", encoding=self.importer.encoding)
with patch("bookwyrm.suggested_users.rerank_suggestions_task.delay"), patch(
"bookwyrm.activitystreams.populate_stream_task.delay"
):
), patch("bookwyrm.lists_stream.populate_lists_task.delay"):
self.local_user = models.User.objects.create_user(
"mouse", "mouse@mouse.mouse", "password", local=True
)

View file

@ -26,7 +26,7 @@ class AnnualSummary(TestCase):
self.factory = RequestFactory()
with patch("bookwyrm.suggested_users.rerank_suggestions_task.delay"), patch(
"bookwyrm.activitystreams.populate_stream_task.delay"
):
), patch("bookwyrm.lists_stream.populate_lists_task.delay"):
self.local_user = models.User.objects.create_user(
"mouse@local.com",
"mouse@mouse.com",

View file

@ -72,7 +72,7 @@ class ListViews(TestCase):
models.SiteSettings.objects.create()
@patch("bookwyrm.lists_stream.ListsStream.get_activity_stream")
@patch("bookwyrm.lists_stream.ListsStream.get_list_stream")
def test_lists_page(self, _):
"""there are so many views, this just makes sure it LOADS"""
view = views.Lists.as_view()