Skip to content

Commit

Permalink
fix: remove description from priority tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-pitblado committed Nov 11, 2024
1 parent 3fecc31 commit a6cb64e
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ mod tests {
let expected = ParsedTask {
title: "Update software documentation".to_string(),
priority: Some(4),
description: None,
};
let result = parse_task_input(input);
assert_eq!(result, expected);
Expand All @@ -55,7 +54,6 @@ mod tests {
let expected = ParsedTask {
title: "Fix bugs in the code".to_string(),
priority: Some(2),
description: None,
};
let result = parse_task_input(input);
assert_eq!(result, expected);
Expand All @@ -67,7 +65,6 @@ mod tests {
let expected = ParsedTask {
title: "Write tests for the parser".to_string(),
priority: Some(3),
description: None,
};
let result = parse_task_input(input);
assert_eq!(result, expected);
Expand All @@ -79,7 +76,6 @@ mod tests {
let expected = ParsedTask {
title: "Deploy to production".to_string(),
priority: Some(5),
description: None,
};
let result = parse_task_input(input);
assert_eq!(result, expected);
Expand All @@ -91,7 +87,6 @@ mod tests {
let expected = ParsedTask {
title: "Prepare presentation slides".to_string(),
priority: Some(2),
description: None,
};
let result = parse_task_input(input);
assert_eq!(result, expected);
Expand All @@ -103,7 +98,6 @@ mod tests {
let expected = ParsedTask {
title: "Organize team building event".to_string(),
priority: Some(1),
description: None,
};
let result = parse_task_input(input);
assert_eq!(result, expected);
Expand All @@ -115,7 +109,6 @@ mod tests {
let expected = ParsedTask {
title: "Check logs immediately".to_string(),
priority: None,
description: None,
};
let result = parse_task_input(input);
assert_eq!(result, expected);
Expand Down

0 comments on commit a6cb64e

Please sign in to comment.