config_test.go use correct path for config.test.yml

This commit is contained in:
Matt Christ 2021-03-27 08:18:55 -05:00
parent 89d2364898
commit bed9528208

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)
}