Skip to content

Commit

Permalink
pulchrified test
Browse files Browse the repository at this point in the history
  • Loading branch information
enola-dkfz committed Apr 19, 2024
1 parent 8e4f9fd commit dd51f0d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -436,10 +436,8 @@ mod test {

#[test]
fn test_replace_cql_all() {
for (key, value) in REPLACE_MAP.iter() {
let decoded_library: &str = key;
let expected_result: &str = value;
pretty_assertions::assert_eq!(replace_cql(decoded_library), expected_result);
for (decoded_library, expected_result) in REPLACE_MAP.iter() {
pretty_assertions::assert_eq!(replace_cql(*decoded_library).as_str(), *expected_result);
}
}

Expand Down

0 comments on commit dd51f0d

Please sign in to comment.