mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Revert hack in TestExecTTY
It'll weaken this test case, and the flaky test is resolved by another commit in this PR. Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
This commit is contained in:
parent
a444b5f60c
commit
021a12ef1b
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ func (s *DockerSuite) TestExecTTY(c *check.C) {
|
|||
c.Assert(err, checker.IsNil)
|
||||
defer p.Close()
|
||||
|
||||
_, err = p.Write([]byte("cat /foo && sleep 2 && exit\n"))
|
||||
_, err = p.Write([]byte("cat /foo && exit\n"))
|
||||
c.Assert(err, checker.IsNil)
|
||||
|
||||
chErr := make(chan error)
|
||||
|
|
Loading…
Reference in a new issue