Skip to content

Commit

Permalink
fix: Follow up #2
Browse files Browse the repository at this point in the history
  • Loading branch information
hrk091 committed Sep 21, 2024
1 parent 8c1058c commit 9822a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/tester/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func summaryLine(pass bool, policy string, testCase TestCase, result string) str
if testCase.Param.IsValid() {
summary += fmt.Sprintf(" (Param: %s)", testCase.Param.String())
}
summary += fmt.Sprintf(" - %s ==> %s", strings.ToUpper(string(testCase.Expect)), result)
summary += fmt.Sprintf(" - %s ==> %s", strings.ToUpper(string(testCase.Expect)), strings.ToUpper(result))
return summary
}

Expand Down

0 comments on commit 9822a62

Please sign in to comment.