Browse code

Fixes the typo of docker_cli_network_unix_test.go

Signed-off-by: Wen Cheng Ma <wenchma@cn.ibm.com>

Wen Cheng Ma authored on 2016/01/21 17:37:17
Showing 1 changed files
... ...
@@ -1189,7 +1189,7 @@ func (s *DockerSuite) TestUserDefinedNetworkConnectDisconnectLink(c *check.C) {
1189 1189
 	dockerCmd(c, "run", "-d", "--net=foo1", "--name=first", "busybox", "top")
1190 1190
 	c.Assert(waitRun("first"), check.IsNil)
1191 1191
 
1192
-	// run a container in user-defined network udlinkNet with a link for an existing container
1192
+	// run a container in a user-defined network with a link for an existing container
1193 1193
 	// and a link for a container that doesnt exist
1194 1194
 	dockerCmd(c, "run", "-d", "--net=foo1", "--name=second", "--link=first:FirstInFoo1",
1195 1195
 		"--link=third:bar", "busybox", "top")
... ...
@@ -1222,7 +1222,7 @@ func (s *DockerSuite) TestUserDefinedNetworkConnectDisconnectLink(c *check.C) {
1222 1222
 	c.Assert(err, check.IsNil)
1223 1223
 }
1224 1224
 
1225
-// #19100 This is a deprecated feature test, it should be remove in Docker 1.12
1225
+// #19100 This is a deprecated feature test, it should be removed in Docker 1.12
1226 1226
 func (s *DockerNetworkSuite) TestDockerNetworkStartAPIWithHostconfig(c *check.C) {
1227 1227
 	netName := "test"
1228 1228
 	conName := "foo"