fix test_integrations error

This commit is contained in:
Rigel Rozanski 2017-04-13 16:31:29 -04:00 committed by Ethan Buchman
parent 7448753257
commit 7bb638e3b8
1 changed files with 2 additions and 2 deletions

View File

@ -48,9 +48,9 @@ func GetConfig(rootDir string) *viper.Viper {
config.SetConfigName("config")
config.SetConfigType("toml")
config.AddConfigPath(rootDir)
err := viper.ReadInConfig()
err := config.ReadInConfig()
if err != nil {
Exit(Fmt("Could not read config: %v", err))
Exit(Fmt("Could not read config from directory %v: %v", rootDir, err))
}
//config.WatchConfig()