Merge pull request #110 from mattchrist/master

config_test.go use correct path for config.test.yml
This commit is contained in:
Steve Brunton 2021-04-01 23:06:57 -04:00 committed by GitHub
commit 8de2156848
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ func TestShouldParse(t *testing.T) {
}
func loadTestFile(t *testing.T) []byte {
b, err := ioutil.ReadFile("test/config.test.yml")
b, err := ioutil.ReadFile("config.test.yml")
if err != nil {
t.Fatalf("could not load config: %v", err)
}