Merge pull request #38115 from thaJeztah/fix_double_scheme

Fix double "unix://" scheme in TestInfoAPIWarnings
This commit is contained in:
Tõnis Tiigi 2018-10-31 16:29:45 -07:00 committed by GitHub
commit 104cbc0780
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ func TestInfoAPIWarnings(t *testing.T) {
client, err := d.NewClient()
assert.NilError(t, err)
d.StartWithBusybox(t, "--iptables=false", "-H=0.0.0.0:23756", "-H=unix://"+d.Sock())
d.StartWithBusybox(t, "-H=0.0.0.0:23756", "-H="+d.Sock())
defer d.Stop(t)
info, err := client.Info(context.Background())