summaryrefslogtreecommitdiff
path: root/test/system/700-play.bats
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2021-08-12 07:22:48 +0000
committerGitHub <noreply@github.com>2021-08-12 07:22:48 +0000
commitde043a5a029d4d03b91f8b88ca8cee7d71dcdeed (patch)
tree11793798c376c07e4c582c8a976eae4133553070 /test/system/700-play.bats
parent25ff04dcbe3212db6f72d08f3f904154bab4c0fe (diff)
parent404488a0879c84de523adeacb78c6b898a7e52c8 (diff)
downloadpodman-de043a5a029d4d03b91f8b88ca8cee7d71dcdeed.tar.gz
podman-de043a5a029d4d03b91f8b88ca8cee7d71dcdeed.tar.bz2
podman-de043a5a029d4d03b91f8b88ca8cee7d71dcdeed.zip
Merge pull request #11203 from rhatdan/codespell
Run codespell to fix spelling
Diffstat (limited to 'test/system/700-play.bats')
-rw-r--r--test/system/700-play.bats4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/700-play.bats b/test/system/700-play.bats
index 3e6961b08..498956b9a 100644
--- a/test/system/700-play.bats
+++ b/test/system/700-play.bats
@@ -94,9 +94,9 @@ RELABEL="system_u:object_r:container_file_t:s0"
mkdir -p $TESTDIR
echo "$testYaml" | sed "s|TESTDIR|${TESTDIR}|g" > $PODMAN_TMPDIR/test.yaml
run_podman 125 play kube --network bridge $PODMAN_TMPDIR/test.yaml
- is "$output" ".*invalid value passed to --network: bridge or host networking must be configured in YAML" "podman plan-network should fail wth --network host"
+ is "$output" ".*invalid value passed to --network: bridge or host networking must be configured in YAML" "podman plan-network should fail with --network host"
run_podman 125 play kube --network host $PODMAN_TMPDIR/test.yaml
- is "$output" ".*invalid value passed to --network: bridge or host networking must be configured in YAML" "podman plan-network should fail wth --network host"
+ is "$output" ".*invalid value passed to --network: bridge or host networking must be configured in YAML" "podman plan-network should fail with --network host"
run_podman play kube --network slirp4netns:port_handler=slirp4netns $PODMAN_TMPDIR/test.yaml
run_podman pod rm -f test_pod
}