Merge pull request #78746 from danwinship/test-name-typo

Fix spelling of test name
This commit is contained in:
Kubernetes Prow Robot 2019-06-14 15:25:56 -07:00 committed by GitHub
commit 3b146147e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -921,7 +921,7 @@ func TestPodFailedSchedulingMultipleTimesDoesNotBlockNewerPod(t *testing.T) {
// TestHighPriorityBackoff tests that a high priority pod does not block
// other pods if it is unschedulable
func TestHighProirotyBackoff(t *testing.T) {
func TestHighPriorityBackoff(t *testing.T) {
q := NewPriorityQueue(nil, nil)
midPod := v1.Pod{
@ -959,7 +959,7 @@ func TestHighProirotyBackoff(t *testing.T) {
t.Errorf("Error while popping the head of the queue: %v", err)
}
if p != &highPod {
t.Errorf("Expected to get high prority pod, got: %v", p)
t.Errorf("Expected to get high priority pod, got: %v", p)
}
// Update pod condition to unschedulable.
podutil.UpdatePodCondition(&p.Status, &v1.PodCondition{
@ -978,13 +978,13 @@ func TestHighProirotyBackoff(t *testing.T) {
t.Errorf("Error while popping the head of the queue: %v", err)
}
if p != &midPod {
t.Errorf("Expected to get mid prority pod, got: %v", p)
t.Errorf("Expected to get mid priority pod, got: %v", p)
}
}
// TestHighProirotyFlushUnschedulableQLeftover tests that pods will be moved to
// TestHighPriorityFlushUnschedulableQLeftover tests that pods will be moved to
// activeQ after one minutes if it is in unschedulableQ
func TestHighProirotyFlushUnschedulableQLeftover(t *testing.T) {
func TestHighPriorityFlushUnschedulableQLeftover(t *testing.T) {
q := NewPriorityQueue(nil, nil)
midPod := v1.Pod{
ObjectMeta: metav1.ObjectMeta{