Merge pull request #97307 from nearora-msft/fix-azure-diskclient-mock

fix: Fix ListByResourceGroup in azure diskClient mock
This commit is contained in:
Kubernetes Prow Robot 2021-01-04 11:37:56 -08:00 committed by GitHub
commit b7afcf52b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,5 +119,5 @@ func (m *MockInterface) ListByResourceGroup(ctx context.Context, resourceGroupNa
// ListByResourceGroup indicates an expected call of ListByResourceGroup
func (mr *MockInterfaceMockRecorder) ListByResourceGroup(ctx, resourceGroupName interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListByResourceGroup", reflect.TypeOf((*MockInterface)(nil).Delete), ctx, resourceGroupName)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListByResourceGroup", reflect.TypeOf((*MockInterface)(nil).ListByResourceGroup), ctx, resourceGroupName)
}