Skip to content

Commit a4a403a

Browse files
committed
Fix suite_test.go
Signed-off-by: Todd Short <[email protected]>
1 parent 1b1b671 commit a4a403a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

internal/controllers/suite_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func newClient(t *testing.T) client.Client {
4747
}
4848

4949
func newClientAndReconciler(t *testing.T) (client.Client, *controllers.ClusterExtensionReconciler) {
50-
resolver, err := solver.New()
50+
_, err := solver.New()
5151
require.NoError(t, err)
5252

5353
cl := newClient(t)
@@ -56,7 +56,6 @@ func newClientAndReconciler(t *testing.T) (client.Client, *controllers.ClusterEx
5656
Client: cl,
5757
BundleProvider: &fakeCatalogClient,
5858
Scheme: sch,
59-
Resolver: resolver,
6059
}
6160
return cl, reconciler
6261
}

0 commit comments

Comments
 (0)