Fix a few linter errors.

This commit is contained in:
Ward Vandewege 2021-04-29 21:03:15 -04:00
parent 283ca3b6f8
commit 491fb0adb3
2 changed files with 1 additions and 2 deletions

View File

@ -50,7 +50,7 @@ func loadConfig(path string) error {
err := viper.ReadInConfig()
if err != nil {
return errors.New(fmt.Sprintf("Fatal error reading config file: %s \n", err))
return fmt.Errorf("Fatal error reading config file: %s \n", err)
}
// Collect any validation errors and return them all at once

View File

@ -90,7 +90,6 @@ func (*Suite) TestTLSConfigValidation(c *check.C) {
// Check configuration validation errors (2)
configYaml = []byte("---\nserver_url: \"http://192.168.1.12:8000\"\ntls_letsencrypt_hostname: \"example.com\"\ntls_letsencrypt_challenge_type: \"TLS-ALPN-01\"")
fmt.Printf(string(configYaml))
writeConfig(c, tmpDir, configYaml)
err = loadConfig(tmpDir)
c.Assert(err, check.NotNil)