Commit 120315d6 authored by Geoff Simmons's avatar Geoff Simmons

Minor cosmetic fix in test code.

parent fc5c45b1
......@@ -33,6 +33,24 @@ import (
"testing"
)
var coffeeSvc3 = Service{
Name: "coffee-svc",
Addresses: []Address{
{
IP: "192.0.2.4",
Port: 80,
},
{
IP: "192.0.2.5",
Port: 80,
},
{
IP: "192.0.2.6",
Port: 80,
},
},
}
var barSpec2 = Spec{
DefaultService: Service{},
Rules: []Rule{
......
......@@ -127,24 +127,6 @@ func TestIngressTemplate(t *testing.T) {
}
}
var coffeeSvc3 = Service{
Name: "coffee-svc",
Addresses: []Address{
{
IP: "192.0.2.4",
Port: 80,
},
{
IP: "192.0.2.5",
Port: 80,
},
{
IP: "192.0.2.6",
Port: 80,
},
},
}
var varnishCluster = ShardCluster{
Nodes: []Service{
Service{
......
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