Browse Source

Merge pull request #20598 from wenchma/typo

Fix typo
Doug Davis 9 years ago
parent
commit
dbec35ffd3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      integration-cli/docker_cli_network_unix_test.go

+ 1 - 1
integration-cli/docker_cli_network_unix_test.go

@@ -1389,7 +1389,7 @@ func (s *DockerSuite) TestEmbeddedDNSInvalidInput(c *check.C) {
 	testRequires(c, DaemonIsLinux, NotUserNamespace)
 	testRequires(c, DaemonIsLinux, NotUserNamespace)
 	dockerCmd(c, "network", "create", "-d", "bridge", "nw1")
 	dockerCmd(c, "network", "create", "-d", "bridge", "nw1")
 
 
-	// Sending garbge to embedded DNS shouldn't crash the daemon
+	// Sending garbage to embedded DNS shouldn't crash the daemon
 	dockerCmd(c, "run", "-i", "--net=nw1", "--name=c1", "debian:jessie", "bash", "-c", "echo InvalidQuery > /dev/udp/127.0.0.11/53")
 	dockerCmd(c, "run", "-i", "--net=nw1", "--name=c1", "debian:jessie", "bash", "-c", "echo InvalidQuery > /dev/udp/127.0.0.11/53")
 }
 }