fn test_try_from_long_string()

in helpers/ticket_fields/src/title.rs [62:65]


    fn test_try_from_long_string() {
        let err = TicketTitle::try_from(overly_long_title()).unwrap_err();
        assert_eq!(err.to_string(), "The title cannot be longer than 50 bytes");
    }