Skip to content

Commit

Permalink
lint: Apply go format on all go files
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-allard committed Mar 26, 2021
1 parent 54c321c commit 54a973f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions go/solution-operator-lib/pkg/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ func TestLoadConfigurationFromFile(t *testing.T) {
APIVersion: expectedAPIVersion,
Kind: expectedKind,
Repositories: map[string][]Repository{
"1.0.0": []Repository{
Repository{
"1.0.0": {
{
Endpoint: "docker.io/grafana",
Images: []string{"grafana:6.7.4"},
},
Repository{
{
Endpoint: "docker.io/prom",
Images: []string{"prometheus:v2.16.0"},
},
Repository{
{
Endpoint: "docker.io/bitnami",
Images: []string{"prometheus-operator:v0.38.1"},
},
Expand All @@ -45,8 +45,8 @@ func TestLoadConfigurationFromFile(t *testing.T) {
APIVersion: expectedAPIVersion,
Kind: expectedKind,
Repositories: map[string][]Repository{
"1.0.0": []Repository{
Repository{
"1.0.0": {
{
Endpoint: "metalk8s-registry-from-config.invalid/my-solution-1.0.0",
Images: []string{
"grafana:6.7.4",
Expand All @@ -55,8 +55,8 @@ func TestLoadConfigurationFromFile(t *testing.T) {
},
},
},
"1.1.0": []Repository{
Repository{
"1.1.0": {
{
Endpoint: "metalk8s-registry-from-config.invalid/my-solution-1.1.0",
Images: []string{
"grafana:7.2.1",
Expand Down

0 comments on commit 54a973f

Please sign in to comment.