mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-22 16:46:53 +01:00
tests: Clean up redundant type declarations
This commit is contained in:
parent
3bee569a8a
commit
c024ae096d
1 changed files with 11 additions and 11 deletions
|
@ -14,62 +14,62 @@ func TestHostsFromKeys(t *testing.T) {
|
||||||
}{
|
}{
|
||||||
{
|
{
|
||||||
[]Address{
|
[]Address{
|
||||||
Address{Original: "foo", Host: "foo"},
|
{Original: "foo", Host: "foo"},
|
||||||
},
|
},
|
||||||
[]string{"foo"},
|
[]string{"foo"},
|
||||||
[]string{"foo"},
|
[]string{"foo"},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
[]Address{
|
[]Address{
|
||||||
Address{Original: "foo", Host: "foo"},
|
{Original: "foo", Host: "foo"},
|
||||||
Address{Original: "bar", Host: "bar"},
|
{Original: "bar", Host: "bar"},
|
||||||
},
|
},
|
||||||
[]string{"bar", "foo"},
|
[]string{"bar", "foo"},
|
||||||
[]string{"bar", "foo"},
|
[]string{"bar", "foo"},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
[]Address{
|
[]Address{
|
||||||
Address{Original: ":2015", Port: "2015"},
|
{Original: ":2015", Port: "2015"},
|
||||||
},
|
},
|
||||||
[]string{}, []string{},
|
[]string{}, []string{},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
[]Address{
|
[]Address{
|
||||||
Address{Original: ":443", Port: "443"},
|
{Original: ":443", Port: "443"},
|
||||||
},
|
},
|
||||||
[]string{}, []string{},
|
[]string{}, []string{},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
[]Address{
|
[]Address{
|
||||||
Address{Original: "foo", Host: "foo"},
|
{Original: "foo", Host: "foo"},
|
||||||
Address{Original: ":2015", Port: "2015"},
|
{Original: ":2015", Port: "2015"},
|
||||||
},
|
},
|
||||||
[]string{}, []string{"foo"},
|
[]string{}, []string{"foo"},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
[]Address{
|
[]Address{
|
||||||
Address{Original: "example.com:2015", Host: "example.com", Port: "2015"},
|
{Original: "example.com:2015", Host: "example.com", Port: "2015"},
|
||||||
},
|
},
|
||||||
[]string{"example.com"},
|
[]string{"example.com"},
|
||||||
[]string{"example.com:2015"},
|
[]string{"example.com:2015"},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
[]Address{
|
[]Address{
|
||||||
Address{Original: "example.com:80", Host: "example.com", Port: "80"},
|
{Original: "example.com:80", Host: "example.com", Port: "80"},
|
||||||
},
|
},
|
||||||
[]string{"example.com"},
|
[]string{"example.com"},
|
||||||
[]string{"example.com"},
|
[]string{"example.com"},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
[]Address{
|
[]Address{
|
||||||
Address{Original: "https://:2015/foo", Scheme: "https", Port: "2015", Path: "/foo"},
|
{Original: "https://:2015/foo", Scheme: "https", Port: "2015", Path: "/foo"},
|
||||||
},
|
},
|
||||||
[]string{},
|
[]string{},
|
||||||
[]string{},
|
[]string{},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
[]Address{
|
[]Address{
|
||||||
Address{Original: "https://example.com:2015/foo", Scheme: "https", Host: "example.com", Port: "2015", Path: "/foo"},
|
{Original: "https://example.com:2015/foo", Scheme: "https", Host: "example.com", Port: "2015", Path: "/foo"},
|
||||||
},
|
},
|
||||||
[]string{"example.com"},
|
[]string{"example.com"},
|
||||||
[]string{"example.com:2015"},
|
[]string{"example.com:2015"},
|
||||||
|
|
Loading…
Reference in a new issue