summaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-06-05 16:45:20 +0200
committerGitHub <noreply@github.com>2021-06-05 16:45:20 +0200
commit1e006a58ccf62d9def0778af550c35f5acf504ae (patch)
tree01453444a70ae1431d021361b3d0d0ae06ff575f /test/system
parentcdf26a3d5677e0372e8892f85a8fd6065d512bcf (diff)
parent1f73374acd3c33d1884e9383205c9f891a3552db (diff)
downloadpodman-1e006a58ccf62d9def0778af550c35f5acf504ae.tar.gz
podman-1e006a58ccf62d9def0778af550c35f5acf504ae.tar.bz2
podman-1e006a58ccf62d9def0778af550c35f5acf504ae.zip
Merge pull request #10549 from Luap99/fix-9859
remote: always send resize before the container starts
Diffstat (limited to 'test/system')
-rw-r--r--test/system/450-interactive.bats3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/system/450-interactive.bats b/test/system/450-interactive.bats
index a9bf52ee8..a2db39492 100644
--- a/test/system/450-interactive.bats
+++ b/test/system/450-interactive.bats
@@ -56,8 +56,7 @@ function teardown() {
stty rows $rows cols $cols <$PODMAN_TEST_PTY
# ...and make sure stty under podman reads that.
- # FIXME: 'sleep 1' is needed for podman-remote; without it, there's
- run_podman run -it --name mystty $IMAGE sh -c 'sleep 1;stty size' <$PODMAN_TEST_PTY
+ run_podman run -it --name mystty $IMAGE stty size <$PODMAN_TEST_PTY
is "$output" "$rows $cols" "stty under podman reads the correct dimensions"
}