diff --git a/config/config_test.go b/config/config_test.go index d1a4a428..fb650f7f 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -262,11 +262,11 @@ services: } if config.Web.Address != DefaultAddress { - t.Errorf("Bind address should have been %s, because it is specified in config", DefaultAddress) + t.Errorf("Bind address should have been %s, because it is the default value", DefaultAddress) } if config.Web.Port != DefaultPort { - t.Errorf("Port should have been %d, because it is specified in config", DefaultPort) + t.Errorf("Port should have been %d, because it is the default value", DefaultPort) } }