Skip to content

Commit

Permalink
Updated the E2E test suite to use the appropriate component names.
Browse files Browse the repository at this point in the history
  • Loading branch information
seshachalam-yv committed Apr 19, 2023
1 parent 73ac6b1 commit 10e70bd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/component/etcd/configmap/configmap_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
. "github.com/onsi/gomega"
)

func TestService(t *testing.T) {
func TestConfigMap(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Configmap Component Suite")
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
. "github.com/onsi/gomega"
)

func TestService(t *testing.T) {
func TestPodDisruptionBudget(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "PodDisruptionBudget Component Suite")
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
. "github.com/onsi/gomega"
)

func TestService(t *testing.T) {
func TestServiceAccount(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "ServiceAccount Component Suite")
}
2 changes: 1 addition & 1 deletion pkg/component/etcd/statefulset/statefulset_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
. "github.com/onsi/gomega"
)

func TestService(t *testing.T) {
func TestStatefulSet(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Statefulset Component Suite")
}

0 comments on commit 10e70bd

Please sign in to comment.