Merge pull request #18636 from feihujiang/removeStopCommandInE2eTest

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2015-12-16 23:38:11 -08:00
2 changed files with 3 additions and 3 deletions

View File

@@ -775,7 +775,7 @@ var _ = Describe("Kubectl client", func() {
})
AfterEach(func() {
runKubectlOrDie("stop", "rc", rcName, nsFlag)
runKubectlOrDie("delete", "rc", rcName, nsFlag)
})
It("should create an rc from an image [Conformance]", func() {
@@ -818,7 +818,7 @@ var _ = Describe("Kubectl client", func() {
})
AfterEach(func() {
runKubectlOrDie("stop", "jobs", jobName, nsFlag)
runKubectlOrDie("delete", "jobs", jobName, nsFlag)
})
It("should create a job from an image when restart is OnFailure [Conformance]", func() {