소스 검색

Include alias key in tests

Mark Rousskov 5 년 전
부모
커밋
af13a3fb10
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/config.rs

+ 2 - 0
src/config.rs

@@ -177,6 +177,7 @@ mod tests {
             PingTeamConfig {
                 message: "So many people!".to_owned(),
                 label: Some("T-compiler".to_owned()),
+                alias: HashSet::new(),
             },
         );
         ping_teams.insert(
@@ -184,6 +185,7 @@ mod tests {
             PingTeamConfig {
                 message: "Testing".to_owned(),
                 label: None,
+                alias: HashSet::new(),
             },
         );
         let mut nominate_teams = HashMap::new();