fixed test

This commit is contained in:
DastInDark
2022-09-07 10:23:55 +09:00
parent 26fe7dd2b2
commit a3faa89d41
2 changed files with 2 additions and 2 deletions

View File

@@ -795,7 +795,7 @@ mod tests {
(
"%Channel%".to_owned(),
mock_ch_filter
.get("Security")
.get("security")
.unwrap_or(&String::default())
.to_string(),
),

View File

@@ -599,7 +599,7 @@ mod tests {
let actual = create_output_filter_config("test_files/config/channel_abbreviations.txt");
let actual2 = create_output_filter_config("test_files/config/channel_abbreviations.txt");
let expected: HashMap<String, String> = HashMap::from([
("Security".to_string(), "Sec".to_string()),
("security".to_string(), "Sec".to_string()),
("xxx".to_string(), "yyy".to_string()),
]);
_check_hashmap_element(&expected, actual);