diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2022-08-23 16:12:06 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2022-08-23 16:12:08 -0400 |
commit | 8b1e88bf80b3cd650be04fd397f7b85d355788dd (patch) | |
tree | 6068e9a334a828c7af130dfee5f996ab17d420b4 /test/system/272-system-connection.bats | |
parent | cf9c04ae2b61d1eed32a73aad2172d3455a5a9fa (diff) | |
download | podman-8b1e88bf80b3cd650be04fd397f7b85d355788dd.tar.gz podman-8b1e88bf80b3cd650be04fd397f7b85d355788dd.tar.bz2 podman-8b1e88bf80b3cd650be04fd397f7b85d355788dd.zip |
Fix documentation of use of tcp connections
Fixes: https://github.com/containers/podman/issues/15430
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/system/272-system-connection.bats')
-rw-r--r-- | test/system/272-system-connection.bats | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/272-system-connection.bats b/test/system/272-system-connection.bats index e9e9a01ea..e937a7273 100644 --- a/test/system/272-system-connection.bats +++ b/test/system/272-system-connection.bats @@ -95,12 +95,12 @@ $c2[ ]\+tcp://localhost:54321[ ]\+true" \ # we need for the server. ${PODMAN%%-remote*} --root ${PODMAN_TMPDIR}/root \ --runroot ${PODMAN_TMPDIR}/runroot \ - system service -t 99 tcp:localhost:$_SERVICE_PORT & + system service -t 99 tcp://localhost:$_SERVICE_PORT & _SERVICE_PID=$! wait_for_port localhost $_SERVICE_PORT _run_podman_remote info --format '{{.Host.RemoteSocket.Path}}' - is "$output" "tcp:localhost:$_SERVICE_PORT" \ + is "$output" "tcp://localhost:$_SERVICE_PORT" \ "podman info works, and talks to the correct server" _run_podman_remote info --format '{{.Store.GraphRoot}}' |