Skip to content

Commit 0bd35d1

Browse files
authored
Merge pull request kubernetes#73448 from AdamDang/patch-21
Fix some error in returned message
2 parents 1ff2809 + f870382 commit 0bd35d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/scheduler_perf/scheduler_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func TestSchedule100Node3KPods(t *testing.T) {
7979
if min < threshold3K {
8080
t.Errorf("Failing: Scheduling rate was too low for an interval, we saw rate of %v, which is the allowed minimum of %v ! ", min, threshold3K)
8181
} else if min < warning3K {
82-
fmt.Printf("Warning: pod scheduling throughput for 3k pods was slow for an interval... Saw a interval with very low (%v) scheduling rate!", min)
82+
fmt.Printf("Warning: pod scheduling throughput for 3k pods was slow for an interval... Saw an interval with very low (%v) scheduling rate!", min)
8383
} else {
8484
fmt.Printf("Minimal observed throughput for 3k pod test: %v\n", min)
8585
}
@@ -93,7 +93,7 @@ func TestSchedule100Node3KPods(t *testing.T) {
9393
// }
9494
// config := defaultSchedulerBenchmarkConfig(2000, 60000)
9595
// if min := schedulePods(config); min < threshold60K {
96-
// t.Errorf("To small pod scheduling throughput for 60k pods. Expected %v got %v", threshold60K, min)
96+
// t.Errorf("Too small pod scheduling throughput for 60k pods. Expected %v got %v", threshold60K, min)
9797
// } else {
9898
// fmt.Printf("Minimal observed throughput for 60k pod test: %v\n", min)
9999
// }

0 commit comments

Comments
 (0)