@@ -144,7 +144,7 @@ func TestValidateMultitenantIPConfigsRequestSuccess(t *testing.T) {
144144 happyReq .OrchestratorContext = b
145145 happyReq .SecondaryInterfacesExist = false
146146
147- _ , respCode , err , _ := middleware .GetPodInfoForIPConfigsRequest (context .TODO (), happyReq )
147+ _ , respCode , _ , err := middleware .GetPodInfoForIPConfigsRequest (context .TODO (), happyReq )
148148 assert .Equal (t , err , "" )
149149 assert .Equal (t , respCode , types .Success )
150150 assert .Equal (t , happyReq .SecondaryInterfacesExist , true )
@@ -158,7 +158,7 @@ func TestValidateMultitenantIPConfigsRequestSuccess(t *testing.T) {
158158 happyReq2 .OrchestratorContext = b
159159 happyReq2 .SecondaryInterfacesExist = false
160160
161- _ , respCode , err , _ = middleware .GetPodInfoForIPConfigsRequest (context .TODO (), happyReq2 )
161+ _ , respCode , _ , err = middleware .GetPodInfoForIPConfigsRequest (context .TODO (), happyReq2 )
162162 assert .Equal (t , err , "" )
163163 assert .Equal (t , respCode , types .Success )
164164 assert .Equal (t , happyReq .SecondaryInterfacesExist , true )
@@ -172,7 +172,7 @@ func TestValidateMultitenantIPConfigsRequestSuccess(t *testing.T) {
172172 happyReq3 .OrchestratorContext = b
173173 happyReq3 .SecondaryInterfacesExist = false
174174
175- _ , respCode , err , _ = middleware .GetPodInfoForIPConfigsRequest (context .TODO (), happyReq3 )
175+ _ , respCode , _ , err = middleware .GetPodInfoForIPConfigsRequest (context .TODO (), happyReq3 )
176176 assert .Equal (t , err , "" )
177177 assert .Equal (t , respCode , types .Success )
178178 assert .Equal (t , happyReq3 .SecondaryInterfacesExist , false )
0 commit comments