We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f299473 commit e90b6b9Copy full SHA for e90b6b9
test/e2e/network/util_iperf.go
@@ -84,7 +84,7 @@ func NewIPerf(csvLine string) (*IPerfCSVResult, error) {
84
}
85
csvLine = strings.Trim(csvLine, "\n")
86
slice := StrSlice(strings.Split(csvLine, ","))
87
- // iperf 2.19+ reportes 15 fields, before it was just 9
+ // iperf 2.19+ reports 15 fields, before it was just 9
88
if len(slice) != 15 {
89
return nil, fmt.Errorf("incorrect fields in the output: %v (%v out of 15)", slice, len(slice))
90
0 commit comments