Skip to content

Commit

Permalink
fixup: Add json field names to BootstrapTestConfig struct
Browse files Browse the repository at this point in the history
  • Loading branch information
marun committed Sep 20, 2024
1 parent 9069698 commit 628804f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/fixture/bootstrapmonitor/bootstrap_test_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ var (
)

type BootstrapTestConfig struct {
Network string
StateSyncEnabled bool
Image string
Versions *version.Versions
Network string `json:"network"`
StateSyncEnabled bool `json:"stateSyncEnabled"`
Image string `json:"image"`
Versions *version.Versions `json:"versions,omitempty"`
}

// GetBootstrapTestConfigFromPod extracts the bootstrap test configuration from the specified pod.
Expand Down

0 comments on commit 628804f

Please sign in to comment.