1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fix typo in integration-cli (#29160)

Signed-off-by: xianwei <xianwei.zw@alibaba-inc.com>
This commit is contained in:
zhangxianwei 2016-12-06 11:23:41 +08:00 committed by Doug Davis
parent 1f09d68a6e
commit 2dfb57b670

View file

@ -45,7 +45,7 @@ func (s *DockerSuite) TestRmContainerRunning(c *check.C) {
func (s *DockerSuite) TestRmContainerForceRemoveRunning(c *check.C) { func (s *DockerSuite) TestRmContainerForceRemoveRunning(c *check.C) {
createRunningContainer(c, "foo") createRunningContainer(c, "foo")
// Stop then remove with -s // Stop then remove with -f
dockerCmd(c, "rm", "-f", "foo") dockerCmd(c, "rm", "-f", "foo")
} }