From 06774e23f97a011fc21eb34f5550c4d47eb9187e Mon Sep 17 00:00:00 2001 From: vladopajic Date: Tue, 4 Jul 2023 19:14:44 +0200 Subject: [PATCH] fix override path property name in yaml (#22) --- pkg/testcoverage/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/testcoverage/config.go b/pkg/testcoverage/config.go index 256d9aa..95a301e 100644 --- a/pkg/testcoverage/config.go +++ b/pkg/testcoverage/config.go @@ -31,7 +31,7 @@ type Threshold struct { type Override struct { Threshold int `yaml:"threshold"` - Path string `yaml:"paths"` + Path string `yaml:"path"` } type Exclude struct {