Canvas Link
https://learning.flatironschool.com/courses/6201/assignments/234472?module_item_id=549463
Concern
The test asks for a ValueError to be raised if the Summary is "More than 250 chars," but counts if the length is exactly 250 characters, it counts it as incorrect.
Additional Context
No response
Suggested Changes
Maximum characters for summary should be 249 in the instructions or it should test for len(summary) > 250 instead of len(summary) >= 250.
Canvas Link
https://learning.flatironschool.com/courses/6201/assignments/234472?module_item_id=549463
Concern
The test asks for a
ValueErrorto be raised if the Summary is "More than 250 chars," but counts if the length is exactly 250 characters, it counts it as incorrect.Additional Context
No response
Suggested Changes
Maximum characters for summary should be 249 in the instructions or it should test for
len(summary) > 250instead oflen(summary) >= 250.