diff --git a/config/config_test.go b/config/config_test.go index d948f800..538309fe 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -344,10 +344,11 @@ alerting: access-key: "1" originator: "31619191918" recipients: "31619191919" - placeholders: - ALERT_TRIGGERED_OR_RESOLVED: - triggered: "partial_outage" - resolved: "operational" + custom: + placeholders: + ALERT_TRIGGERED_OR_RESOLVED: + triggered: "partial_outage" + resolved: "operational" services: - name: twinnation url: https://twinnation.org/health @@ -400,6 +401,12 @@ services: if config.Alerting.Messagebird.Recipients != "31619191919" { t.Errorf("Messagebird to recipients should've been %s, but was %s", "31619191919", config.Alerting.Messagebird.Recipients) } + if config.Alerting.Custom == nil { + t.Fatal("config.Alerting. Custom shouldn't have been nil") + } + if config.Alerting.Custom.Placeholders == nil { + t.Fatal("config.Alerting.Custom.Placeholders shouldn't have been nil") + } if len(config.Services) != 1 { t.Error("There should've been 1 service") }