From ed90b986d17c5957ff017024078ffc5396b1ea6d Mon Sep 17 00:00:00 2001 From: drorganvidez Date: Thu, 24 Oct 2024 15:45:46 +0200 Subject: [PATCH] fix: Fix auth test --- app/modules/auth/tests/test_unit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/auth/tests/test_unit.py b/app/modules/auth/tests/test_unit.py index da4a953f..9434fa4a 100644 --- a/app/modules/auth/tests/test_unit.py +++ b/app/modules/auth/tests/test_unit.py @@ -192,7 +192,7 @@ def test_confirm_user_active_user(test_client): url = url_for('confirmemail.confirm_user', token=token, _external=False) response = test_client.get(url, follow_redirects=True) - assert response.request.path == url_for("auth.show_signup_form", _external=False) + assert response.request.path == url_for("public.index", _external=False) user = UserRepository().get_by_email(user.email) assert user.active is True