Skip to content

Commit

Permalink
remove unused test
Browse files Browse the repository at this point in the history
  • Loading branch information
doubleailes committed Oct 21, 2023
1 parent 07b1fad commit 27b7b0d
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,14 +291,3 @@ fn test_continuity() {
let expected: Vec<Vec<isize>> = vec![vec![1, 2, 3], vec![5, 6, 7], vec![11, 12]];
assert_eq!(expected, group_continuity(&source));
}
#[test]
fn test_create_frame_string() {
let source: Vec<String> = vec![
"001".to_string(),
"005".to_string(),
"003".to_string(),
"002".to_string(),
];
let expected: String = "1-3,5".to_string();
assert_eq!(expected, create_frame_string(source));
}

0 comments on commit 27b7b0d

Please sign in to comment.