Skip to content
Snippets Groups Projects
Verified Commit ca2df622 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Remove test for "not linked to a person" text

parent 93bc8cea
No related branches found
No related tags found
1 merge request!1123Resolve "Finalise Vuetify app as SPA"
......@@ -26,19 +26,6 @@ def test_index_not_logged_in(client):
assert response["Location"].startswith(reverse(settings.LOGIN_URL))
def test_login_without_person(client, django_user_model):
username = "foo"
password = "bar"
django_user_model.objects.create_user(username=username, password=password)
client.login(username=username, password=password)
response = client.get("/django/", follow=True)
assert response.status_code == 200
assert "Your user account is not linked to a person." in response.content.decode("utf-8")
def test_logout(client, django_user_model):
username = "foo"
password = "bar"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment