Fixed code format issues

This commit is contained in:
lpessoa 2022-01-17 21:24:02 -03:00
parent cbacd32a68
commit 62eeaac437
No known key found for this signature in database
GPG key ID: EE95569A130570F0
2 changed files with 25 additions and 25 deletions

View file

@ -11,7 +11,7 @@ func sampleContainers(userConfig *config.AppConfig) []*Container {
return []*Container{ return []*Container{
{ {
ID: "1", ID: "1",
Name:"1", Name: "1",
Container: types.Container{ Container: types.Container{
State: "exited", State: "exited",
}, },
@ -19,7 +19,7 @@ func sampleContainers(userConfig *config.AppConfig) []*Container {
}, },
{ {
ID: "2", ID: "2",
Name:"2", Name: "2",
Container: types.Container{ Container: types.Container{
State: "running", State: "running",
}, },
@ -27,7 +27,7 @@ func sampleContainers(userConfig *config.AppConfig) []*Container {
}, },
{ {
ID: "3", ID: "3",
Name:"3", Name: "3",
Container: types.Container{ Container: types.Container{
State: "running", State: "running",
}, },
@ -35,7 +35,7 @@ func sampleContainers(userConfig *config.AppConfig) []*Container {
}, },
{ {
ID: "4", ID: "4",
Name:"4", Name: "4",
Container: types.Container{ Container: types.Container{
State: "created", State: "created",
}, },
@ -48,7 +48,7 @@ func expectedPerStatusContainers(appConfig *config.AppConfig) []*Container {
return []*Container{ return []*Container{
{ {
ID: "2", ID: "2",
Name:"2", Name: "2",
Container: types.Container{ Container: types.Container{
State: "running", State: "running",
}, },
@ -56,7 +56,7 @@ func expectedPerStatusContainers(appConfig *config.AppConfig) []*Container {
}, },
{ {
ID: "3", ID: "3",
Name:"3", Name: "3",
Container: types.Container{ Container: types.Container{
State: "running", State: "running",
}, },
@ -64,7 +64,7 @@ func expectedPerStatusContainers(appConfig *config.AppConfig) []*Container {
}, },
{ {
ID: "1", ID: "1",
Name:"1", Name: "1",
Container: types.Container{ Container: types.Container{
State: "exited", State: "exited",
}, },
@ -72,7 +72,7 @@ func expectedPerStatusContainers(appConfig *config.AppConfig) []*Container {
}, },
{ {
ID: "4", ID: "4",
Name:"4", Name: "4",
Container: types.Container{ Container: types.Container{
State: "created", State: "created",
}, },
@ -85,7 +85,7 @@ func expectedLegacySortedContainers(appConfig *config.AppConfig) []*Container {
return []*Container{ return []*Container{
{ {
ID: "1", ID: "1",
Name:"1", Name: "1",
Container: types.Container{ Container: types.Container{
State: "exited", State: "exited",
}, },
@ -93,7 +93,7 @@ func expectedLegacySortedContainers(appConfig *config.AppConfig) []*Container {
}, },
{ {
ID: "2", ID: "2",
Name:"2", Name: "2",
Container: types.Container{ Container: types.Container{
State: "running", State: "running",
}, },
@ -101,7 +101,7 @@ func expectedLegacySortedContainers(appConfig *config.AppConfig) []*Container {
}, },
{ {
ID: "3", ID: "3",
Name:"3", Name: "3",
Container: types.Container{ Container: types.Container{
State: "running", State: "running",
}, },
@ -109,7 +109,7 @@ func expectedLegacySortedContainers(appConfig *config.AppConfig) []*Container {
}, },
{ {
ID: "4", ID: "4",
Name:"4", Name: "4",
Container: types.Container{ Container: types.Container{
State: "created", State: "created",
}, },