diff options
author | 2020-10-28 20:07:25 +0200 | |
---|---|---|
committer | 2020-10-28 20:07:25 +0200 | |
commit | 194e3720ad8cfac1c38d8ac1279688aa6dd65c6a (patch) | |
tree | e2b5d98ba1b4554f70c7084c0f6fa5701e1382e3 /pydis_site/apps/resources/tests | |
parent | Remove unnecessary namespace from including resources app URLs (diff) |
Change resources home name from resources -> index
Diffstat (limited to 'pydis_site/apps/resources/tests')
-rw-r--r-- | pydis_site/apps/resources/tests/test_views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/resources/tests/test_views.py b/pydis_site/apps/resources/tests/test_views.py index b131b2a6..497e9bfe 100644 --- a/pydis_site/apps/resources/tests/test_views.py +++ b/pydis_site/apps/resources/tests/test_views.py @@ -5,6 +5,6 @@ from django_hosts import reverse class TestResourcesView(TestCase): def test_resources_index_200(self): """Check does index of resources app return 200 HTTP response.""" - url = reverse("resources:resources") + url = reverse("resources:index") response = self.client.get(url) self.assertEqual(response.status_code, 200) |