Fix session-based test

This commit is contained in:
Neil Martinsen-Burrell 2022-11-18 11:56:20 -06:00
parent f5c117df9f
commit 8259a12203
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
2 changed files with 45 additions and 9 deletions

View file

@ -144,5 +144,5 @@ class ApplicationWizard(LoginRequiredMixin, NamedUrlSessionWizardView):
application = self.forms_to_object(form_dict)
application.submit() # change the status to submitted
application.save()
logger.debug("Application object saved:", application.id)
logger.debug("Application object saved: %s", application.id)
return redirect("home")