From 8474bbff4594f382dbac5ad59767d18b2d8f2689 Mon Sep 17 00:00:00 2001 From: Wen Cheng Ma Date: Tue, 23 Feb 2016 17:27:55 +0800 Subject: [PATCH] Fix typo Signed-off-by: Wen Cheng Ma --- integration-cli/docker_cli_network_unix_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_network_unix_test.go b/integration-cli/docker_cli_network_unix_test.go index 5d91bc459d..5577593507 100644 --- a/integration-cli/docker_cli_network_unix_test.go +++ b/integration-cli/docker_cli_network_unix_test.go @@ -1389,7 +1389,7 @@ func (s *DockerSuite) TestEmbeddedDNSInvalidInput(c *check.C) { testRequires(c, DaemonIsLinux, NotUserNamespace) 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") }