diff options
-rw-r--r-- | src/ci_ctl.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci_ctl.rs b/src/ci_ctl.rs index 6abb829..36eada5 100644 --- a/src/ci_ctl.rs +++ b/src/ci_ctl.rs @@ -151,7 +151,7 @@ fn main() { "github" => { assert!(NotifierConfig::github_from_file(&full_config_file_path).is_ok()); } - "email" => { + "github-email" => { assert!(NotifierConfig::email_from_file(&full_config_file_path).is_ok()); } other => { @@ -187,7 +187,7 @@ fn main() { "github" => { NotifierConfig::github_from_file(&config_file).unwrap(); } - "email" => { + "github-email" => { NotifierConfig::email_from_file(&config_file).unwrap(); } other => { |