Skip to content

Commit

Permalink
remove failure printing
Browse files Browse the repository at this point in the history
Signed-off-by: chjmil <christopher.miller@sas.com>
  • Loading branch information
saschjmil committed Feb 7, 2025
1 parent e3211d5 commit eae0ccd
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions test/test_output/parse_results.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,6 @@ func main() {
for _, suite := range testSuites.TestSuites {
fmt.Printf("Suite: %s | Failures: %d\n", suite.Name, suite.Failures)
totalFailures += suite.Failures

for _, test := range suite.TestCases {
if test.Failure != nil {
fmt.Printf("[FAIL] %s - %s: %s\n", test.ClassName, test.Name, test.Failure.Message)
}
if test.Error != nil {
fmt.Printf("[ERROR] %s - %s: %s\n", test.ClassName, test.Name, test.Error.Message)
}
}
}

// If no failures, report success
Expand Down

0 comments on commit eae0ccd

Please sign in to comment.