Minor update

This commit is contained in:
TwinProduction 2021-01-17 16:38:22 -05:00
parent 6d8fd267de
commit 0985e3bed8

View File

@ -165,7 +165,7 @@ web:
port: 12345 port: 12345
services: services:
- name: twinnation - name: twinnation
url: https://twinnation.org/actuator/health url: https://twinnation.org/health
conditions: conditions:
- "[STATUS] == 200" - "[STATUS] == 200"
`)) `))
@ -178,17 +178,15 @@ services:
if config.Metrics { if config.Metrics {
t.Error("Metrics should've been false by default") t.Error("Metrics should've been false by default")
} }
if config.Services[0].URL != "https://twinnation.org/actuator/health" { if config.Services[0].URL != "https://twinnation.org/health" {
t.Errorf("URL should have been %s", "https://twinnation.org/actuator/health") t.Errorf("URL should have been %s", "https://twinnation.org/health")
} }
if config.Services[0].Interval != 60*time.Second { if config.Services[0].Interval != 60*time.Second {
t.Errorf("Interval should have been %s, because it is the default value", 60*time.Second) t.Errorf("Interval should have been %s, because it is the default value", 60*time.Second)
} }
if config.Web.Address != DefaultAddress { if config.Web.Address != DefaultAddress {
t.Errorf("Bind address should have been %s, because it is the default value", DefaultAddress) t.Errorf("Bind address should have been %s, because it is the default value", DefaultAddress)
} }
if config.Web.Port != 12345 { if config.Web.Port != 12345 {
t.Errorf("Port should have been %d, because it is specified in config", 12345) t.Errorf("Port should have been %d, because it is specified in config", 12345)
} }