diff options
author | 2021-03-06 14:13:50 +0200 | |
---|---|---|
committer | 2021-03-06 14:13:50 +0200 | |
commit | 48eff5d27715acd658f6284f4d4e1cdbbf71bee6 (patch) | |
tree | 23bb679138df21889a58afa730bae0f01f5a2458 /pydis_site/apps/api/tests | |
parent | Fix grammar of nomination viewset command about single entry for user (diff) |
Fix grammar of unknown actor error and change tests
Diffstat (limited to 'pydis_site/apps/api/tests')
-rw-r--r-- | pydis_site/apps/api/tests/test_nominations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/tests/test_nominations.py b/pydis_site/apps/api/tests/test_nominations.py index c07679c5..9cefbd8f 100644 --- a/pydis_site/apps/api/tests/test_nominations.py +++ b/pydis_site/apps/api/tests/test_nominations.py @@ -528,5 +528,5 @@ class NominationTests(APISubdomainTestCase): response = self.client.patch(url, data=data) self.assertEqual(response.status_code, 400) self.assertEqual(response.json(), { - 'actor': ["Actor don't exist or have not nominated user."] + 'actor': ["The actor doesn't exist or has not nominated the user."] }) |