You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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 oflen(summary) >= 250
.The text was updated successfully, but these errors were encountered: