mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-26 03:21:05 +00:00
Fixes reference to renamed view
This commit is contained in:
parent
42e29e40b3
commit
9104d1f8db
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ class ExportViews(TestCase):
|
|||
)
|
||||
request = self.factory.post("")
|
||||
request.user = self.local_user
|
||||
export = views.export_user_book_data(request)
|
||||
export = views.Export.as_view()(request)
|
||||
self.assertIsInstance(export, StreamingHttpResponse)
|
||||
self.assertEqual(export.status_code, 200)
|
||||
result = list(export.streaming_content)
|
||||
|
|
Loading…
Reference in a new issue