diff options
author | 2020-07-29 18:03:13 +0200 | |
---|---|---|
committer | 2020-07-29 18:03:13 +0200 | |
commit | 676fb98057b6ea4b270e304adb5caeff5d894d93 (patch) | |
tree | ca05f37d51d4529eec8e7d7f30c89fab1be2939c /pydis_site/apps/api/tests | |
parent | Add a test for checking duplicates. (diff) | |
parent | Merge pull request #370 from python-discord/role-reminders (diff) |
Merge branch 'master' into whitelist_system
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) |