Fixed the error message for min/max scale tests (#919)

* Fixed the error message for min/max scale tests

* Updated in update_test.go as well
This commit is contained in:
Mike Petersen 2020-07-07 14:13:47 -07:00 committed by GitHub
parent e6f125fd4e
commit 4bc9a42faa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -540,7 +540,7 @@ func TestServiceCreateMaxMinScale(t *testing.T) {
} }
if *template.Spec.ContainerConcurrency != int64(100) { if *template.Spec.ContainerConcurrency != int64(100) {
t.Fatalf("container concurrency not set to given value 1000") t.Fatalf("container concurrency not set to given value 100")
} }
} }

View File

@ -350,7 +350,7 @@ func TestServiceUpdateMaxMinScale(t *testing.T) {
} }
if *template.Spec.ContainerConcurrency != int64(100) { if *template.Spec.ContainerConcurrency != int64(100) {
t.Fatalf("container concurrency not set to given value 1000") t.Fatalf("container concurrency not set to given value 100")
} }
} }