Skip to content

Commit

Permalink
Shorten line lenght
Browse files Browse the repository at this point in the history
  • Loading branch information
SzymonSAP committed Nov 28, 2024
1 parent 55bce4d commit 0813e50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmdutils/move_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ var _ = Describe("metalctl move", func() {
// TEST
crsSchema := []schema.GroupVersionKind{}
for _, crdKind := range []string{"BMC", "BMCSecret", "Endpoint", "Server", "ServerBootConfiguration", "ServerClaim"} {
crsSchema = append(crsSchema, schema.GroupVersionKind{Group: "metal.ironcore.dev", Version: "v1alpha1", Kind: crdKind})
crsSchema = append(crsSchema,
schema.GroupVersionKind{Group: "metal.ironcore.dev", Version: "v1alpha1", Kind: crdKind})
}
err := Move(context.TODO(), clients, crsSchema, "", false)
Expect(err).ToNot(HaveOccurred())
Expand Down

0 comments on commit 0813e50

Please sign in to comment.