Merge pull request #4 from vrnvu/main

fixes usage valid_description typo
This commit is contained in:
Luca Palmieri 2024-05-17 13:29:30 +02:00 committed by GitHub
commit a8ba7ddec6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ mod tests {
#[test] #[test]
#[should_panic(expected = "Title cannot be empty")] #[should_panic(expected = "Title cannot be empty")]
fn title_cannot_be_empty() { fn title_cannot_be_empty() {
Ticket::new("".into(), valid_title(), "To-Do".into()); Ticket::new("".into(), valid_description(), "To-Do".into());
} }
#[test] #[test]