Merge pull request #64175 from mtaufen/test-name-cleanup

Automatic merge from submit-queue (batch tested with PRs 64175, 63893). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.

add colon separators to improve readability of test names

```release-note
NONE
```
pull/8/head
Kubernetes Submit Queue 2018-05-25 03:50:09 -07:00 committed by GitHub
commit 8395b7c12e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -300,7 +300,7 @@ var _ = framework.KubeDescribe("[Feature:DynamicKubeletConfig][NodeAlphaFeature:
})
})
Context("update Node.Spec.ConfigSource: recover to last-known-good ConfigMap", func() {
Context("update Node.Spec.ConfigSource: recover to last-known-good ConfigMap:", func() {
It(itDescription, func() {
var err error
// we base the "lkg" configmap off of the configuration from before the test
@ -364,7 +364,7 @@ var _ = framework.KubeDescribe("[Feature:DynamicKubeletConfig][NodeAlphaFeature:
})
})
Context("update Node.Spec.ConfigSource: recover to last-known-good ConfigMap.KubeletConfigKey", func() {
Context("update Node.Spec.ConfigSource: recover to last-known-good ConfigMap.KubeletConfigKey:", func() {
It(itDescription, func() {
const badConfigKey = "bad"
var err error
@ -419,7 +419,7 @@ var _ = framework.KubeDescribe("[Feature:DynamicKubeletConfig][NodeAlphaFeature:
})
// exposes resource leaks across config changes
Context("update Node.Spec.ConfigSource: 100 update stress test", func() {
Context("update Node.Spec.ConfigSource: 100 update stress test:", func() {
It(itDescription, func() {
var err error
@ -476,7 +476,7 @@ var _ = framework.KubeDescribe("[Feature:DynamicKubeletConfig][NodeAlphaFeature:
// roll out a new Node.Spec.ConfigSource that references the new ConfigMap. In-place ConfigMap updates, including deletion
// followed by re-creation, will cause all observing Kubelets to immediately restart for new config, because these operations
// change the ResourceVersion of the ConfigMap.
Context("update ConfigMap in-place: state transitions", func() {
Context("update ConfigMap in-place: state transitions:", func() {
It(itDescription, func() {
var err error
// we base the "correct" configmap off of the configuration from before the test
@ -556,7 +556,7 @@ var _ = framework.KubeDescribe("[Feature:DynamicKubeletConfig][NodeAlphaFeature:
// roll out a new Node.Spec.ConfigSource that references the new ConfigMap. In-place ConfigMap updates, including deletion
// followed by re-creation, will cause all observing Kubelets to immediately restart for new config, because these operations
// change the ResourceVersion of the ConfigMap.
Context("update ConfigMap in-place: recover to last-known-good version", func() {
Context("update ConfigMap in-place: recover to last-known-good version:", func() {
It(itDescription, func() {
var err error
// we base the "lkg" configmap off of the configuration from before the test
@ -635,7 +635,7 @@ var _ = framework.KubeDescribe("[Feature:DynamicKubeletConfig][NodeAlphaFeature:
// roll out a new Node.Spec.ConfigSource that references the new ConfigMap. In-place ConfigMap updates, including deletion
// followed by re-creation, will cause all observing Kubelets to immediately restart for new config, because these operations
// change the ResourceVersion of the ConfigMap.
Context("delete and recreate ConfigMap: state transitions", func() {
Context("delete and recreate ConfigMap: state transitions:", func() {
It(itDescription, func() {
var err error
// we base the "correct" configmap off of the configuration from before the test
@ -715,7 +715,7 @@ var _ = framework.KubeDescribe("[Feature:DynamicKubeletConfig][NodeAlphaFeature:
// roll out a new Node.Spec.ConfigSource that references the new ConfigMap. In-place ConfigMap updates, including deletion
// followed by re-creation, will cause all observing Kubelets to immediately restart for new config, because these operations
// change the ResourceVersion of the ConfigMap.
Context("delete and recreate ConfigMap: error while ConfigMap is absent", func() {
Context("delete and recreate ConfigMap: error while ConfigMap is absent:", func() {
It(itDescription, func() {
var err error
// we base the "correct" configmap off of the configuration from before the test