Skip to content

Commit

Permalink
Fix formatting in test types (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaello committed Jul 28, 2022
1 parent 49339ae commit 3a11386
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/api/v1/guestbook_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@ import (
// +kubebuilder:object:root=true

type Embedded struct {
A string `json:"a,omitempty"`
A string `json:"a,omitempty"`
Embedded1 `json:",inline"`
}
type Embedded1 struct {
Embedded2 `json:",inline"`
E string `json:"e,omitempty"`
E string `json:"e,omitempty"`
}
type Embedded2 struct {
B string `json:"b,omitempty"`
B string `json:"b,omitempty"`
Embedded3 `json:",inline"`
}
type Embedded3 struct {
Embedded4 `json:",inline"`
D string `json:"d,omitempty"`
D string `json:"d,omitempty"`
}
type Embedded4 struct {
C string `json:"c,omitempty"`
Expand Down

0 comments on commit 3a11386

Please sign in to comment.