Skip to content

Commit 7a6ae42

Browse files
committed
Revert "debug"
This reverts commit dc031c8.
1 parent dc031c8 commit 7a6ae42

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

tools/flakeguard/reports/owner_mapper.go

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
package reports
22

3-
import (
4-
"fmt"
5-
6-
"github.com/smartcontractkit/chainlink-testing-framework/tools/flakeguard/codeowners"
7-
)
3+
import "github.com/smartcontractkit/chainlink-testing-framework/tools/flakeguard/codeowners"
84

95
// MapTestResultsToOwners maps test results to their code owners based on the TestPath and CODEOWNERS file.
106
func MapTestResultsToOwners(report *TestReport, codeOwnersPath string) error {
@@ -16,8 +12,6 @@ func MapTestResultsToOwners(report *TestReport, codeOwnersPath string) error {
1612

1713
// Assign owners to each test result
1814
for i, result := range report.Results {
19-
fmt.Printf("Loaded Patterns: %+v\n", codeOwnerPatterns)
20-
fmt.Printf("TestPath: %s\n", result.TestPath)
2115
if result.TestPath != "NOT FOUND" {
2216
report.Results[i].CodeOwners = codeowners.FindOwners(result.TestPath, codeOwnerPatterns)
2317
} else {

0 commit comments

Comments
 (0)