Skip to content

Commit

Permalink
Merge pull request #10342 from chrischdi/pr-clusterclass-test-gomega-fix
Browse files Browse the repository at this point in the history
🐛 Fix using corerect testing.T when creating gomega object
  • Loading branch information
k8s-ci-robot committed Mar 28, 2024
2 parents 9dcacfb + 803b91f commit 5baca0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ func TestReconciler_reconcileVariables(t *testing.T) {
},
}
for _, tt := range tests {
t.Run(tt.name, func(*testing.T) {
t.Run(tt.name, func(t *testing.T) {
g := NewWithT(t)
fakeRuntimeClient := fakeruntimeclient.NewRuntimeClientBuilder().
WithCallExtensionResponses(
Expand Down

0 comments on commit 5baca0f

Please sign in to comment.