Merge pull request #9346 from afbjorklund/gofmt-register

Run gofmt on code, to avoid modified workspace
pull/9353/head
Medya Ghazizadeh 2020-09-29 11:15:43 -05:00 committed by GitHub
commit be496e1053
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -62,7 +62,7 @@ func init() {
Reg = Register{
// Expected step orders, organized by the initial step seen
steps: map[RegStep][]RegStep{
InitialSetup: []RegStep{
InitialSetup: {
InitialSetup,
SelectingDriver,
DownloadingArtifacts,
@ -78,10 +78,10 @@ func init() {
Done,
},
Stopping: []RegStep{Stopping, Done},
Pausing: []RegStep{Pausing, Done},
Unpausing: []RegStep{Unpausing, Done},
Deleting: []RegStep{Deleting, Stopping, Deleting, Done},
Stopping: {Stopping, Done},
Pausing: {Pausing, Done},
Unpausing: {Unpausing, Done},
Deleting: {Deleting, Stopping, Deleting, Done},
},
}
}