diff --git a/profiles/tests.py b/profiles/tests.py index b850238..cf8d9fa 100644 --- a/profiles/tests.py +++ b/profiles/tests.py @@ -9,7 +9,7 @@ class ProfileTest(TestCase): self.user.save() self.expected_response = {"name": "bozo", "title": ""} - self.url = "/profiles/" + self.url = "/api/profiles/" def test_profile_create_on_user_created(self): response: HttpResponse = self.client.get(self.url + str(self.user.pk))