Skip to content

Commit

Permalink
Fix using corerect testing.T when creating gomega object
Browse files Browse the repository at this point in the history
  • Loading branch information
chrischdi authored and Dhairya-Arora01 committed May 25, 2024
1 parent 14b4e03 commit 81a170b
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 81a170b

Please sign in to comment.