fn test_try_from_empty_string()

in helpers/ticket_fields/src/description.rs [54:57]


    fn test_try_from_empty_string() {
        let err = TicketDescription::try_from("".to_string()).unwrap_err();
        assert_eq!(err.to_string(), "The description cannot be empty");
    }