diff --git a/tools/flakeguard/reports/presentation_test.go b/tools/flakeguard/reports/presentation_test.go index 31fa2c9f0..d443e1f72 100644 --- a/tools/flakeguard/reports/presentation_test.go +++ b/tools/flakeguard/reports/presentation_test.go @@ -253,15 +253,15 @@ func TestRenderResults(t *testing.T) { PanickedTests: 0, RacedTests: 0, FlakyTests: 1, - FlakyTestRatio: "100.00%", + FlakyTestRatio: "100%", TotalRuns: 4, PassedRuns: 3, FailedRuns: 1, SkippedRuns: 0, - PassRatio: "75.00%", + PassRatio: "75%", MaxPassRatio: 0.9, }, - expectedStringsContain: []string{"Test1", "package1", "75.00%", "false", "1.05s", "4", "0"}, + expectedStringsContain: []string{"Test1", "package1", "75%", "false", "1.05s", "4", "0"}, }, // Add more test cases as needed }