Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
muralov committed Oct 18, 2023
1 parent a9c24e2 commit 4179ffe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/k8s/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,8 @@ func TestGetSubscriptions(t *testing.T) {
// given
ctx := context.Background()
scheme := runtime.NewScheme()
eventingv1alpha2.AddToScheme(scheme)
err := eventingv1alpha2.AddToScheme(scheme)
require.NoError(t, err)

fakeClient := fake.NewClientBuilder().WithScheme(scheme).Build()

Expand Down

0 comments on commit 4179ffe

Please sign in to comment.