Merge pull request #67930 from AdamDang/patch-15

Fix the returned messaged: statefullset->statefulset
pull/58/head
k8s-ci-robot 2018-10-18 18:39:03 -07:00 committed by GitHub
commit 34db40fbf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ func TestStatefulSetScale(t *testing.T) {
preconditions := ScalePrecondition{-1, ""} preconditions := ScalePrecondition{-1, ""}
count := uint(3) count := uint(3)
name := "foo" name := "foo"
err := scaler.Scale("default", name, count, &preconditions, nil, nil, schema.GroupResource{Group: "apps", Resource: "statefullset"}) err := scaler.Scale("default", name, count, &preconditions, nil, nil, schema.GroupResource{Group: "apps", Resource: "statefulset"})
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }