diff options
author | 2020-07-20 13:56:10 -0400 | |
---|---|---|
committer | 2020-07-20 13:56:10 -0400 | |
commit | d720d56e8d99bcc5df1679cfe83593c39fc0cb0e (patch) | |
tree | 04aba87e98d75d5052371139cca202c25311dba2 /pydis_site/apps/api/tests | |
parent | Bump jQuery version (diff) | |
parent | Fix 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.py | 1 |
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) |