Skip to content

Commit 12c7775

Browse files
committed
Fix coverage source dir paths
1 parent 9b0ef98 commit 12c7775

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gateway/it/coverage.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ func DefaultCoverageConfig() *coverage.CoverageConfig {
3030
policyEngineSourceDir, _ := filepath.Abs("../gateway-runtime/policy-engine")
3131
return &coverage.CoverageConfig{
3232
OutputDir: "coverage",
33-
Services: []string{"gateway-controller", "policy-engine"},
33+
Services: []string{"gateway-controller", "gateway-runtime"},
3434
ServiceSourceDirs: map[string]string{
3535
"gateway-controller": controllerSourceDir,
36-
"policy-engine": policyEngineSourceDir,
36+
"gateway-runtime": policyEngineSourceDir,
3737
},
3838
ContainerPath: "/build/",
3939
ModulePrefixes: []string{

0 commit comments

Comments
 (0)