aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site
diff options
context:
space:
mode:
Diffstat (limited to 'pydis_site')
-rw-r--r--pydis_site/apps/api/tests/test_off_topic_channel_names.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/pydis_site/apps/api/tests/test_off_topic_channel_names.py b/pydis_site/apps/api/tests/test_off_topic_channel_names.py
index ae839484..9ab71409 100644
--- a/pydis_site/apps/api/tests/test_off_topic_channel_names.py
+++ b/pydis_site/apps/api/tests/test_off_topic_channel_names.py
@@ -103,13 +103,6 @@ class CreationTests(APISubdomainTestCase):
response = self.client.post(f'{url}?name={name}')
self.assertEqual(response.status_code, 201)
- def test_name_in_full_list(self):
- url = reverse('bot:offtopicchannelname-list', host='api')
- response = self.client.get(url)
-
- self.assertEqual(response.status_code, 200)
- self.assertEqual(response.json(), [self.name])
-
def test_returns_400_for_missing_name_param(self):
url = reverse('bot:offtopicchannelname-list', host='api')
response = self.client.post(url)