Skip to content

Commit fde44f8

Browse files
committed
Fix linting issues
Signed-off-by: Borja Clemente <[email protected]>
1 parent 4bbaa61 commit fde44f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/shared/defaults.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,9 @@ func DefaultScheme() *runtime.Scheme {
226226
framework.TryAddDefaultSchemes(sc)
227227

228228
// Temporary add v1beta1 scheme as long as the e2e tests use v1beta1 templates
229-
clusterv1beta1.AddToScheme(sc)
230-
bootstrapv1beta1.AddToScheme(sc)
231-
controlplanev1beta1.AddToScheme(sc)
229+
_ = clusterv1beta1.AddToScheme(sc)
230+
_ = bootstrapv1beta1.AddToScheme(sc)
231+
_ = controlplanev1beta1.AddToScheme(sc)
232232

233233
_ = infrav1.AddToScheme(sc)
234234
_ = cgscheme.AddToScheme(sc)

0 commit comments

Comments
 (0)