diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-01 03:36:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-01 03:36:11 -0400 |
commit | 317e20a8d5a39088ea112f8321630aacfe27ddbc (patch) | |
tree | 934f83cc105ca3f619d07f7b41384c3d4c31a534 /test/system/001-basic.bats | |
parent | f96c281f53cff68ac0715dac5da0f53eefa95b8b (diff) | |
parent | bf94ebf423931f6cd848126372fe558c8b956dcc (diff) | |
download | podman-317e20a8d5a39088ea112f8321630aacfe27ddbc.tar.gz podman-317e20a8d5a39088ea112f8321630aacfe27ddbc.tar.bz2 podman-317e20a8d5a39088ea112f8321630aacfe27ddbc.zip |
Merge pull request #11776 from edsantiago/bats_is_cleanup
System tests: tighten 'is' operator
Diffstat (limited to 'test/system/001-basic.bats')
-rw-r--r-- | test/system/001-basic.bats | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/system/001-basic.bats b/test/system/001-basic.bats index 888c075b8..2e5ebe4a3 100644 --- a/test/system/001-basic.bats +++ b/test/system/001-basic.bats @@ -101,7 +101,9 @@ function setup() { fi run_podman 125 --remote - is "$output" "Error: missing command 'podman COMMAND'" "podman remote show usage message without running endpoint" + is "$output" "Error: missing command 'podman COMMAND' +Try 'podman --help' for more information." \ + "podman --remote show usage message without running endpoint" } # This is for development only; it's intended to make sure our timeout |