mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
44da5c3de2
Fixed issues related to network subcommand tests - "network" in exempted list of short help check - Condition for exact test modified to meet experimental commands - Sorting of commands done in flags_experimental Signed-off-by: Kunal Kushwaha <kunal.kushwaha@gmail.com>
12 lines
246 B
Go
12 lines
246 B
Go
// +build experimental
|
|
|
|
package main
|
|
|
|
import "sort"
|
|
|
|
func init() {
|
|
dockerCommands = append(dockerCommands, command{"network", "Network management"})
|
|
|
|
//Sorting logic required here to pass Command Sort Test.
|
|
sort.Sort(byName(dockerCommands))
|
|
}
|