Skip to content

Commit

Permalink
Fix: format type %d->%f
Browse files Browse the repository at this point in the history
Signed-off-by: l1b0k <[email protected]>
  • Loading branch information
l1b0k authored and tklauser committed Nov 30, 2023
1 parent 0fc9ad0 commit e130c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connectivity/check/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ func (ct *ConnectivityTest) report() error {
ct.Logf("%s", strings.Repeat("-", 145))
for p, d := range ct.PerfResults {
ct.Logf("📋 %-15s | %-50s | %-15s | %-15d | %-15s | %.2f (%s)", d.Scenario, p.Pod, p.Test, d.Samples, d.Duration, d.Avg, d.Metric)
ct.Debugf("Individual Values from run : %s", d.Values)
ct.Debugf("Individual Values from run : %f", d.Values)
}
ct.Logf("%s", strings.Repeat("-", 145))
}
Expand Down

0 comments on commit e130c0d

Please sign in to comment.