Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add custom networking e2e test suite #1445

Merged
merged 4 commits into from
May 4, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
re-word By statement
  • Loading branch information
abhipth committed May 4, 2021
commit aa231327a0b71092497bafd59af02143c781288d
4 changes: 2 additions & 2 deletions test/e2e/custom-networking/custom_networking_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ var _ = Describe("Custom Networking Test", func() {

Context("when creating deployment on nodes that don't have ENIConfig", func() {
JustBeforeEach(func() {
By("deleting all existing ENIConfigs")
By("deleting ENIConfig for all availability zones")
for _, eniConfig := range eniConfigList {
err = f.K8sResourceManagers.CustomResourceManager().
DeleteResource(eniConfig)
Expand All @@ -141,7 +141,7 @@ var _ = Describe("Custom Networking Test", func() {
})

JustAfterEach(func() {
By("creating the deleted ENIConfigs")
By("re-creating ENIConfig for all availability zones")
for _, eniConfig := range eniConfigList {
err = f.K8sResourceManagers.CustomResourceManager().
CreateResource(eniConfig)
Expand Down