Skip to content

Commit 586515e

Browse files
committed
Bump up the length of acceptable descriptions.
1 parent 0518c65 commit 586515e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

bin/jsonschema_suite

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,13 @@ class SanityTests(unittest.TestCase):
9999

100100
def test_all_descriptions_have_reasonable_length(self):
101101
for case in cases(self.test_files):
102-
descript = case["description"]
102+
description = case["description"]
103103
self.assertLess(
104-
len(descript),
105-
60,
106-
"%r is too long! (keep it to less than 60 chars)" % (descript,)
104+
len(description),
105+
70,
106+
"%r is too long! (keep it to less than 70 chars)" % (
107+
description,
108+
),
107109
)
108110

109111
def test_all_descriptions_are_unique(self):

0 commit comments

Comments
 (0)