aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/tests
diff options
context:
space:
mode:
authorGravatar Steele Farnsworth <[email protected]>2021-09-13 13:29:41 -0400
committerGravatar GitHub <[email protected]>2021-09-13 13:29:41 -0400
commitc1f458a8f9681ce141136aa5772a0bf71a392fad (patch)
treeb33d6e28b991bf4a5b8ae884bab48feabde1e0e8 /pydis_site/apps/api/tests
parentRemove wildcard asterisks in URL. (diff)
parentMerge pull request #589 from python-discord/jb3/repos-update (diff)
Merge branch 'main' into swfarnsworth/smarter-resources/merge-with-main
Diffstat (limited to 'pydis_site/apps/api/tests')
-rw-r--r--pydis_site/apps/api/tests/test_validators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/tests/test_validators.py b/pydis_site/apps/api/tests/test_validators.py
index 8bb7b917..551cc2aa 100644
--- a/pydis_site/apps/api/tests/test_validators.py
+++ b/pydis_site/apps/api/tests/test_validators.py
@@ -72,7 +72,7 @@ class TagEmbedValidatorTests(TestCase):
def test_rejects_too_long_description(self):
with self.assertRaises(ValidationError):
validate_embed({
- 'description': 'd' * 2049
+ 'description': 'd' * 4097
})
def test_allows_valid_embed(self):