node_e2e: refactor RunTogether function

This commit is contained in:
Ed Bartosh
2024-04-25 14:06:08 +03:00
parent 82cd82aa15
commit 6ecf0da1a5
2 changed files with 15 additions and 8 deletions

View File

@@ -1006,7 +1006,7 @@ var _ = SIGDescribe(nodefeature.SidecarContainers, "Containers Lifecycle", func(
})
ginkgo.It("should run both restartable init containers and third init container together", func() {
framework.ExpectNoError(results.RunTogether(restartableInit2, restartableInit1))
framework.ExpectNoError(results.RunTogether(restartableInit1, restartableInit2))
framework.ExpectNoError(results.RunTogether(restartableInit1, init3))
framework.ExpectNoError(results.RunTogether(restartableInit2, init3))
})