Skip to content

Commit

Permalink
internal/dag: fix tests from #4169 (#4175)
Browse files Browse the repository at this point in the history
Fixes some logical merge conflicts in
the tests from #4169.

Signed-off-by: Steve Kriss <krisss@vmware.com>
  • Loading branch information
skriss authored Nov 11, 2021
1 parent 32235f7 commit b897984
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions internal/dag/builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10764,12 +10764,12 @@ func TestDAGInsert(t *testing.T) {
},
want: listeners(
&Listener{
Name: HTTPS_LISTENER_NAME,
Port: 443,
SecureVirtualHosts: securevirtualhosts(
&SecureVirtualHost{
VirtualHost: VirtualHost{
Name: "example.com",
ListenerName: "ingress_https",
Name: "example.com",
},
TCPProxy: &TCPProxy{
Clusters: clusters(service(s1), service(s2), service(s9)),
Expand Down Expand Up @@ -10806,12 +10806,12 @@ func TestDAGInsert(t *testing.T) {
},
want: listeners(
&Listener{
Name: HTTPS_LISTENER_NAME,
Port: 443,
SecureVirtualHosts: securevirtualhosts(
&SecureVirtualHost{
VirtualHost: VirtualHost{
Name: "example.com",
ListenerName: "ingress_https",
Name: "example.com",
},
TCPProxy: &TCPProxy{
Clusters: []*Cluster{
Expand Down Expand Up @@ -10852,12 +10852,12 @@ func TestDAGInsert(t *testing.T) {
},
want: listeners(
&Listener{
Name: HTTPS_LISTENER_NAME,
Port: 443,
SecureVirtualHosts: securevirtualhosts(
&SecureVirtualHost{
VirtualHost: VirtualHost{
Name: "example.com",
ListenerName: "ingress_https",
Name: "example.com",
},
TCPProxy: &TCPProxy{
Clusters: []*Cluster{
Expand Down

0 comments on commit b897984

Please sign in to comment.