diff options
| author | 2021-09-13 13:29:41 -0400 | |
|---|---|---|
| committer | 2021-09-13 13:29:41 -0400 | |
| commit | c1f458a8f9681ce141136aa5772a0bf71a392fad (patch) | |
| tree | b33d6e28b991bf4a5b8ae884bab48feabde1e0e8 /pydis_site/apps/api/tests | |
| parent | Remove wildcard asterisks in URL. (diff) | |
| parent | Merge 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.py | 2 |
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): |