diff --git a/src/lib.rs b/src/lib.rs index 430fbfe..c818c28 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -247,6 +247,9 @@ mod test { // end assert_eq!(new_unique_id(vec!["0".to_string(), "1".to_string()]), "2".to_string()); // check deduplication - assert_eq!(new_unique_id(vec!["0".to_string(), "0".to_string()]), "1".to_string()); + assert_eq!( + new_unique_id(vec!["0".to_string(), "0".to_string(), "1".to_string()]), + "2".to_string() + ); } }