Fix tests and linting after merge

This commit is contained in:
Neil Martinsen-Burrell 2022-11-21 10:50:53 -06:00
parent 4b2b54c7ee
commit b4d2c91f9d
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
import logging
from django import forms
from django.shortcuts import redirect, render
from django.shortcuts import render
from django.contrib.auth.mixins import LoginRequiredMixin

View file

@ -146,4 +146,4 @@ class FormTests(TestWithUser, WebTest):
# here too.
self.app.set_cookie(settings.SESSION_COOKIE_NAME, session_id)
next_result = result.follow()
self.assertContains(page, "Thank you for your domain request")
self.assertContains(next_result, "Thank you for your domain request")