diff options
author | Nathan Williams <nath.e.will@gmail.com> | 2018-04-17 17:25:36 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-04-18 10:58:24 +0000 |
commit | 982927468c6102cfc52e838be4815d2f89d3827e (patch) | |
tree | 228f6586cc8fd342a2b0804001d1b8080dd9a3e2 /test | |
parent | 94f20cdd00149edf35e3963cc95d8a5cc8c7dd12 (diff) | |
download | podman-982927468c6102cfc52e838be4815d2f89d3827e.tar.gz podman-982927468c6102cfc52e838be4815d2f89d3827e.tar.bz2 podman-982927468c6102cfc52e838be4815d2f89d3827e.zip |
ip validation game too strong
Signed-off-by: Nathan Williams <nath.e.will@gmail.com>
Closes: #635
Approved by: rhatdan
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/run_dns_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/run_dns_test.go b/test/e2e/run_dns_test.go index cfe6a34a2..e2c0829f3 100644 --- a/test/e2e/run_dns_test.go +++ b/test/e2e/run_dns_test.go @@ -62,11 +62,11 @@ var _ = Describe("Podman run dns", func() { }) It("podman run add host", func() { - session := podmanTest.Podman([]string{"run", "--add-host=foobar:1.1.1.1", "--add-host=foobaz:dead:beef:cafe", ALPINE, "cat", "/etc/hosts"}) + session := podmanTest.Podman([]string{"run", "--add-host=foobar:1.1.1.1", "--add-host=foobaz:2001:db8::68", ALPINE, "cat", "/etc/hosts"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) session.LineInOuputStartsWith("1.1.1.1 foobar") - session.LineInOuputStartsWith("dead:beef:cafe foobaz") + session.LineInOuputStartsWith("2001:db8::68 foobaz") }) It("podman run add hostname", func() { |