Skip to content

Commit faae86c

Browse files
committed
updating to latest contivmodel
1 parent 7a9a8f6 commit faae86c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

netmaster/objApi/objapi_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ func checkServiceCreate(t *testing.T, tenant, network, serviceName string, port
771771

772772
serviceLB := &client.ServiceLB{
773773
TenantName: tenant,
774-
Network: network,
774+
NetworkName: network,
775775
ServiceName: serviceName,
776776
}
777777
if preferredIP != "" {
@@ -790,12 +790,12 @@ func checkServiceCreate(t *testing.T, tenant, network, serviceName string, port
790790

791791
func verifyServiceCreate(t *testing.T, tenant, network, serviceName string, port []string, label []string,
792792
preferredIP string) {
793-
service, err := contivClient.ServiceLBGet(serviceName, tenant)
793+
service, err := contivClient.ServiceLBGet(tenant, serviceName)
794794
if err != nil {
795795
t.Fatalf("Error retrieving the service created %s ", serviceName)
796796
}
797797

798-
if service.Network != network {
798+
if service.NetworkName != network {
799799
t.Fatalf("Service Created does not have a valid network")
800800
}
801801
if !reflect.DeepEqual(service.Selectors, label) || !reflect.DeepEqual(service.Ports, port) {
@@ -823,7 +823,7 @@ func verifyServiceCreate(t *testing.T, tenant, network, serviceName string, port
823823

824824
func checkServiceDelete(t *testing.T, tenant, serviceName string) {
825825

826-
err := contivClient.ServiceLBDelete(serviceName, tenant)
826+
err := contivClient.ServiceLBDelete(tenant, serviceName)
827827
if err != nil {
828828
log.Fatalf("Error creating Service. Err: %v", err)
829829
}

0 commit comments

Comments
 (0)