swap cat by top to prevent 2 warnings

Upstream-commit: 0e021ed470a1014bb924ad7067d85540f8f1e71a
Component: engine
This commit is contained in:
Victor Vieux
2013-10-24 15:06:10 -07:00
parent fe31da6fd6
commit 74017d1538

View File

@ -731,7 +731,7 @@ func TestPostContainersRestart(t *testing.T) {
container, err := runtime.Create(
&Config{
Image: GetTestImage(runtime).ID,
Cmd: []string{"/bin/cat"},
Cmd: []string{"/bin/top"},
OpenStdin: true,
},
)
@ -837,7 +837,7 @@ func TestPostContainersStop(t *testing.T) {
container, err := runtime.Create(
&Config{
Image: GetTestImage(runtime).ID,
Cmd: []string{"/bin/cat"},
Cmd: []string{"/bin/top"},
OpenStdin: true,
},
)