ensure these tests work fine with namespaces in enterprise (#8794)
This commit is contained in:
parent
4b525e5d16
commit
e84d52ba3a
|
@ -605,13 +605,13 @@ func TestInternal_ServiceDump(t *testing.T) {
|
|||
// so the response should be the same in all subtests
|
||||
expectedGW := structs.GatewayServices{
|
||||
{
|
||||
Service: structs.ServiceName{Name: "api"},
|
||||
Gateway: structs.ServiceName{Name: "terminating-gateway"},
|
||||
Service: structs.NewServiceName("api", nil),
|
||||
Gateway: structs.NewServiceName("terminating-gateway", nil),
|
||||
GatewayKind: structs.ServiceKindTerminatingGateway,
|
||||
},
|
||||
{
|
||||
Service: structs.ServiceName{Name: "cache"},
|
||||
Gateway: structs.ServiceName{Name: "terminating-gateway"},
|
||||
Service: structs.NewServiceName("cache", nil),
|
||||
Gateway: structs.NewServiceName("terminating-gateway", nil),
|
||||
GatewayKind: structs.ServiceKindTerminatingGateway,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue