mirror of https://github.com/knative/client.git
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:
parent
e6f125fd4e
commit
4bc9a42faa
|
|
@ -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")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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")
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue