From 311018940216e660bd52e6858b56d3d4ac0fca8c Mon Sep 17 00:00:00 2001 From: Carlo Costino Date: Mon, 18 Sep 2023 16:18:48 -0400 Subject: [PATCH] Fix test style issues Signed-off-by: Carlo Costino --- tests/app/main/test_beta_redirect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/main/test_beta_redirect.py b/tests/app/main/test_beta_redirect.py index 832656fe4..e192941af 100644 --- a/tests/app/main/test_beta_redirect.py +++ b/tests/app/main/test_beta_redirect.py @@ -12,7 +12,6 @@ def test_no_redirect_notify_to_beta_non_production(monkeypatch, client_request): monkeypatch.setitem(current_app.config, "NOTIFY_ENVIRONMENT", "development") assert current_app.config["NOTIFY_ENVIRONMENT"] == "development" - client_request.get_response_from_url( "https://notify.gov/using-notify/get-started", _expected_status=200 @@ -28,6 +27,7 @@ def test_redirect_notify_to_beta(monkeypatch, client_request): _expected_status=302 ) + def test_no_redirect_beta_notify_to_beta(monkeypatch, client_request): monkeypatch.setitem(current_app.config, "NOTIFY_ENVIRONMENT", "production") assert current_app.config["NOTIFY_ENVIRONMENT"] == "production"