aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/resources/tests
diff options
context:
space:
mode:
authorGravatar swfarnsworth <[email protected]>2021-09-03 16:48:35 -0400
committerGravatar swfarnsworth <[email protected]>2021-09-03 16:48:35 -0400
commitd89c65a8fdd0ca6c997f186bd7b5af581c23be2f (patch)
tree023364c767030f330e315d26300b9f8862c2c70d /pydis_site/apps/resources/tests
parentMake title for all resources a link. (diff)
Rename `utils.py` to `resource_search.py`.
Diffstat (limited to 'pydis_site/apps/resources/tests')
-rw-r--r--pydis_site/apps/resources/tests/test_views.py2
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 568f4d13..2e9efc1d 100644
--- a/pydis_site/apps/resources/tests/test_views.py
+++ b/pydis_site/apps/resources/tests/test_views.py
@@ -25,7 +25,7 @@ class TestResourcesListView(TestCase):
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
- @patch("pydis_site.apps.resources.utils.RESOURCES_PATH", TESTING_RESOURCES_PATH)
+ @patch("pydis_site.apps.resources.resource_search.RESOURCES_PATH", TESTING_RESOURCES_PATH)
def test_filter_resource_list(self):
"""TODO: Check that we can correctly filter resources with GET parameters."""
pass