fn test_try_from_long_string()

in helpers/ticket_fields/src/description.rs [60:66]


    fn test_try_from_long_string() {
        let err = TicketDescription::try_from(overly_long_description()).unwrap_err();
        assert_eq!(
            err.to_string(),
            "The description cannot be longer than 500 bytes"
        );
    }