1
0
mirror of https://github.com/docker/cli.git synced 2026-01-18 08:21:31 +03:00

Merge pull request #20598 from wenchma/typo

Fix typo
Upstream-commit: dbec35ffd37bc00e8438f752841b43ab41cdf3d5
Component: engine
This commit is contained in:
Doug Davis
2016-02-23 07:28:50 -05:00

View File

@@ -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")
}