Merge pull request #27617 from pmorie/int-test-typo

Automatic merge from submit-queue

Fix typo in GC integration tests

Fix a typo in `TestCreateWithNonExisitentOwner`
pull/6/head
k8s-merge-robot 2016-06-17 09:08:54 -07:00 committed by GitHub
commit dc729a275a
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ func TestCascadingDeletion(t *testing.T) {
// This test simulates the case where an object is created with an owner that
// doesn't exist. It verifies the GC will delete such an object.
func TestCreateWithNonExisitentOwner(t *testing.T) {
func TestCreateWithNonExistentOwner(t *testing.T) {
gc, clientSet := setup(t)
oldEnableGarbageCollector := registry.EnableGarbageCollector
registry.EnableGarbageCollector = true