mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
Fixed code format issues
This commit is contained in:
parent
cbacd32a68
commit
62eeaac437
2 changed files with 25 additions and 25 deletions
|
|
@ -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",
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue