aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/tests
diff options
context:
space:
mode:
authorGravatar Dennis Pham <[email protected]>2020-07-20 13:56:10 -0400
committerGravatar GitHub <[email protected]>2020-07-20 13:56:10 -0400
commitd720d56e8d99bcc5df1679cfe83593c39fc0cb0e (patch)
tree04aba87e98d75d5052371139cca202c25311dba2 /pydis_site/apps/api/tests
parentBump jQuery version (diff)
parentFix misleading documentation (diff)
Merge pull request #370 from python-discord/role-reminders
Add mentions field to Reminders model
Diffstat (limited to 'pydis_site/apps/api/tests')
-rw-r--r--pydis_site/apps/api/tests/test_reminders.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pydis_site/apps/api/tests/test_reminders.py b/pydis_site/apps/api/tests/test_reminders.py
index c7fa07c9..a05d9296 100644
--- a/pydis_site/apps/api/tests/test_reminders.py
+++ b/pydis_site/apps/api/tests/test_reminders.py
@@ -62,6 +62,7 @@ class ReminderCreationTests(APISubdomainTestCase):
'expiration': datetime.utcnow().isoformat(),
'jump_url': "https://www.google.com",
'channel_id': 123,
+ 'mentions': [8888, 9999],
}
url = reverse('bot:reminder-list', host='api')
response = self.client.post(url, data=data)