diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-01 16:50:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 16:50:38 -0500 |
commit | 965d28024cff51f7197b3b8bc060fdd167a2114f (patch) | |
tree | 323b987f60a2f2fba422a456eb00a3c1dc161567 /test | |
parent | cff448be2d10283e956fada480a063aa346f4a67 (diff) | |
parent | 791c8c347c1bbd69763b7358acfa415c18764d62 (diff) | |
download | podman-965d28024cff51f7197b3b8bc060fdd167a2114f.tar.gz podman-965d28024cff51f7197b3b8bc060fdd167a2114f.tar.bz2 podman-965d28024cff51f7197b3b8bc060fdd167a2114f.zip |
Merge pull request #13392 from baude/v4reverts
V4reverts
Diffstat (limited to 'test')
-rw-r--r-- | test/system/001-basic.bats | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/system/001-basic.bats b/test/system/001-basic.bats index 582efa058..748377e4b 100644 --- a/test/system/001-basic.bats +++ b/test/system/001-basic.bats @@ -126,17 +126,6 @@ See 'podman version --help'" "podman version --remote" if grep -- " --remote " <<<"$output"; then die "podman --help, with CONTAINER_CONNECTION set, is showing --remote" fi - - # When it detects --url or --connection, --remote is not an option - run_podman --url foobar --help - if grep -- " --remote " <<<"$output"; then - die "podman --help, with --url set, is showing --remote" - fi - - run_podman --connection foobar --help - if grep -- " --remote " <<<"$output"; then - die "podman --help, with --connection set, is showing --remote" - fi } # Check that just calling "podman-remote" prints the usage message even |