Browse Source

Fix typo in integration-cli (#29160)

Signed-off-by: xianwei <xianwei.zw@alibaba-inc.com>
zhangxianwei 8 years ago
parent
commit
2dfb57b670
1 changed files with 1 additions and 1 deletions
  1. 1 1
      integration-cli/docker_cli_rm_test.go

+ 1 - 1
integration-cli/docker_cli_rm_test.go

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