mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
cmd: docker: fix TestDaemonCommand
In more recent versions of Cobra, `--help` parsing is done before anything else resulting in TestDaemonCommand not actually passing. I'm actually unsure if this test ever passed since it appears that !daemon is not being run as part of the test suite. Signed-off-by: Aleksa Sarai <asarai@suse.de>
This commit is contained in:
parent
338565805c
commit
dd7159060f
2 changed files with 5 additions and 3 deletions
|
@ -14,6 +14,8 @@ func newDaemonCommand() *cobra.Command {
|
|||
return &cobra.Command{
|
||||
Use: "daemon",
|
||||
Hidden: true,
|
||||
Args: cobra.ArbitraryArgs,
|
||||
DisableFlagParsing: true,
|
||||
RunE: func(cmd *cobra.Command, args []string) error {
|
||||
return runDaemon()
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@ import (
|
|||
|
||||
func TestDaemonCommand(t *testing.T) {
|
||||
cmd := newDaemonCommand()
|
||||
cmd.SetArgs([]string{"--help"})
|
||||
cmd.SetArgs([]string{"--version"})
|
||||
err := cmd.Execute()
|
||||
|
||||
assert.Error(t, err, "Please run `dockerd`")
|
||||
|
|
Loading…
Reference in a new issue