diff options
author | Ed Santiago <santiago@redhat.com> | 2020-05-05 07:18:03 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2020-05-05 07:19:58 -0600 |
commit | 29d39e35e460e0b48df8a28c7672d8e11bf29648 (patch) | |
tree | 3b756b85fbdabd22151e12b2d24228f816a74ed7 /cmd/podman | |
parent | e1be837a4ff149e00ff6af9e71cf9ea625e33e6f (diff) | |
download | podman-29d39e35e460e0b48df8a28c7672d8e11bf29648.tar.gz podman-29d39e35e460e0b48df8a28c7672d8e11bf29648.tar.bz2 podman-29d39e35e460e0b48df8a28c7672d8e11bf29648.zip |
BATS help test: check usage string
Now that we've agreed that usage messages should match
what the user typed, confirm it. IOW 'podman foo --help'
should not issue a usage message for 'podman container foo'.
Fix one broken instance, 'unpause'.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/containers/unpause.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/containers/unpause.go b/cmd/podman/containers/unpause.go index adf8d12ee..7ea8e13c1 100644 --- a/cmd/podman/containers/unpause.go +++ b/cmd/podman/containers/unpause.go @@ -49,7 +49,7 @@ func init() { registry.Commands = append(registry.Commands, registry.CliCommand{ Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode}, - Command: unpauseCommand, + Command: containerUnpauseCommand, Parent: containerCmd, }) |