diff --git a/ki/test/test_find_profiles_endpoint.py b/ki/test/test_find_profiles_endpoint.py index 33dac44..74eeae3 100644 --- a/ki/test/test_find_profiles_endpoint.py +++ b/ki/test/test_find_profiles_endpoint.py @@ -99,7 +99,7 @@ class TestFindProfilesEndpoint(ApiTest): self.assertDictContainsSubset({"nickname": "jutta"}, response.json["profiles"][0]) self.assertDictContainsSubset({"nickname": "monique"}, response.json["profiles"][1]) - def test_find_peter_by_name(self): + def test_find_dieter_by_name(self): token = self.login("peter", "geheim")["token"] response = self.client.get("/users/profiles?search=friedrich", headers={"Authorization": "Bearer " + token})