Commit d291b767 authored by Marc Guasch's avatar Marc Guasch

Gofmt fixes

parent 881da313
...@@ -18,7 +18,7 @@ func TestUpstream(t *testing.T) { ...@@ -18,7 +18,7 @@ func TestUpstream(t *testing.T) {
"proxy / localhost:80", "proxy / localhost:80",
false, false,
map[string]struct{}{ map[string]struct{}{
"http://localhost:80": struct{}{}, "http://localhost:80": {},
}, },
}, },
...@@ -27,9 +27,9 @@ func TestUpstream(t *testing.T) { ...@@ -27,9 +27,9 @@ func TestUpstream(t *testing.T) {
"proxy / localhost:8080-8082", "proxy / localhost:8080-8082",
false, false,
map[string]struct{}{ map[string]struct{}{
"http://localhost:8080": struct{}{}, "http://localhost:8080": {},
"http://localhost:8081": struct{}{}, "http://localhost:8081": {},
"http://localhost:8082": struct{}{}, "http://localhost:8082": {},
}, },
}, },
...@@ -38,7 +38,7 @@ func TestUpstream(t *testing.T) { ...@@ -38,7 +38,7 @@ func TestUpstream(t *testing.T) {
"proxy / {\n upstream localhost:8080\n}", "proxy / {\n upstream localhost:8080\n}",
false, false,
map[string]struct{}{ map[string]struct{}{
"http://localhost:8080": struct{}{}, "http://localhost:8080": {},
}, },
}, },
...@@ -47,8 +47,8 @@ func TestUpstream(t *testing.T) { ...@@ -47,8 +47,8 @@ func TestUpstream(t *testing.T) {
"proxy / {\n upstream localhost:8080-8081\n}", "proxy / {\n upstream localhost:8080-8081\n}",
false, false,
map[string]struct{}{ map[string]struct{}{
"http://localhost:8080": struct{}{}, "http://localhost:8080": {},
"http://localhost:8081": struct{}{}, "http://localhost:8081": {},
}, },
}, },
...@@ -57,9 +57,9 @@ func TestUpstream(t *testing.T) { ...@@ -57,9 +57,9 @@ func TestUpstream(t *testing.T) {
"proxy / localhost:8080 {\n upstream localhost:8081-8082\n}", "proxy / localhost:8080 {\n upstream localhost:8081-8082\n}",
false, false,
map[string]struct{}{ map[string]struct{}{
"http://localhost:8080": struct{}{}, "http://localhost:8080": {},
"http://localhost:8081": struct{}{}, "http://localhost:8081": {},
"http://localhost:8082": struct{}{}, "http://localhost:8082": {},
}, },
}, },
...@@ -68,8 +68,8 @@ func TestUpstream(t *testing.T) { ...@@ -68,8 +68,8 @@ func TestUpstream(t *testing.T) {
"proxy / localhost:8080 {\n upstream unix:/var/foo\n}", "proxy / localhost:8080 {\n upstream unix:/var/foo\n}",
false, false,
map[string]struct{}{ map[string]struct{}{
"http://localhost:8080": struct{}{}, "http://localhost:8080": {},
"unix:/var/foo": struct{}{}, "unix:/var/foo": {},
}, },
}, },
...@@ -92,8 +92,8 @@ func TestUpstream(t *testing.T) { ...@@ -92,8 +92,8 @@ func TestUpstream(t *testing.T) {
"proxy / http://localhost {\n upstream testendpoint\n}", "proxy / http://localhost {\n upstream testendpoint\n}",
false, false,
map[string]struct{}{ map[string]struct{}{
"http://localhost": struct{}{}, "http://localhost": {},
"http://testendpoint": struct{}{}, "http://testendpoint": {},
}, },
}, },
} { } {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment