From b4d2c91f9da7d800d79576ee5c8277b243168c9c Mon Sep 17 00:00:00 2001 From: Neil Martinsen-Burrell Date: Mon, 21 Nov 2022 10:50:53 -0600 Subject: [PATCH] Fix tests and linting after merge --- src/registrar/forms/application_wizard.py | 2 +- src/registrar/tests/test_views.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/registrar/forms/application_wizard.py b/src/registrar/forms/application_wizard.py index c24dce606..0944f7b2c 100644 --- a/src/registrar/forms/application_wizard.py +++ b/src/registrar/forms/application_wizard.py @@ -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 diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index aae5a50f7..6ee830128 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -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")