aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/tests
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2020-07-29 18:03:13 +0200
committerGravatar Leon Sandøy <[email protected]>2020-07-29 18:03:13 +0200
commit676fb98057b6ea4b270e304adb5caeff5d894d93 (patch)
treeca05f37d51d4529eec8e7d7f30c89fab1be2939c /pydis_site/apps/api/tests
parentAdd a test for checking duplicates. (diff)
parentMerge 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.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)