Skip to content

Commit

Permalink
move gomega init
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Jun 10, 2024
1 parent 239b780 commit 37486a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/k8s/pkg/client/kubernetes/pods_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ import (
)

func TestCheckForReadyPods(t *testing.T) {
g := NewGomegaWithT(t)

testCases := []struct {
name string
namespace string
Expand Down Expand Up @@ -82,6 +80,8 @@ func TestCheckForReadyPods(t *testing.T) {

for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
g := NewWithT(t)

clientset := fake.NewSimpleClientset()
client := &Client{
Interface: clientset,
Expand Down

0 comments on commit 37486a3

Please sign in to comment.