Tests broadcasting from list views more thoroughly

This commit is contained in:
Mouse Reeve
2021-02-09 09:41:04 -08:00
parent 76e90cb3f6
commit 0fd2885e7e
2 changed files with 130 additions and 48 deletions

View File

@ -124,7 +124,7 @@ class List(View):
@method_decorator(login_required, name='dispatch')
# pylint: disable=unused-argument
def post(self, request, list_id):
''' edit a book_list '''
''' edit a list '''
book_list = get_object_or_404(models.List, id=list_id)
form = forms.ListForm(request.POST, instance=book_list)
if not form.is_valid():