Skip to content

Commit 874dc87

Browse files
authored
Merge pull request kubernetes#106676 from HecarimV/fix-typo-2021112506
fix typo in /test/integration
2 parents d16a5e5 + 1dc1a37 commit 874dc87

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/integration/apiserver/apply/apply_crd_beta_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ spec:
171171
t.Fatalf("failed to get managedFields from response: %v", err)
172172
}
173173
if !reflect.DeepEqual(existingManagedFields, newManagedFields) {
174-
t.Fatalf("Expected managed fields to not have changed when trying manually settting them via subresoures.\n\nExpected: %#v\n\nGot: %#v", existingManagedFields, newManagedFields)
174+
t.Fatalf("Expected managed fields to not have changed when trying manually setting them via subresoures.\n\nExpected: %#v\n\nGot: %#v", existingManagedFields, newManagedFields)
175175
}
176176

177177
// However, it is possible to modify managed fields using the main resource

test/integration/scheduler/queue_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ func TestCoreResourceEnqueue(t *testing.T) {
124124
t.Fatalf("Expected the Pod to be attempted 2 times, but got %v", podInfo.Attempts)
125125
}
126126
if got := podInfo.Pod.Name; got != "pod1" {
127-
t.Fatalf("Exepcted pod1 to be popped, but got %v", got)
127+
t.Fatalf("Expected pod1 to be popped, but got %v", got)
128128
}
129129

130130
// Pod2 and Pod3 are not expected to be popped out.

0 commit comments

Comments
 (0)