X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=E2Manager%2Fmocks%2Fran_reconnection_manager_mock.go;h=18edaafd25125bc1963c5083842b8e0d2d604727;hb=45758a8e8dbcf279b6ae6731c94d290de580d586;hp=f684c19b84cda8de8ea0370a66baf2481376b26c;hpb=2151d81e25b521d1d7f76fee0f286723e9b00913;p=ric-plt%2Fe2mgr.git diff --git a/E2Manager/mocks/ran_reconnection_manager_mock.go b/E2Manager/mocks/ran_reconnection_manager_mock.go index f684c19..18edaaf 100644 --- a/E2Manager/mocks/ran_reconnection_manager_mock.go +++ b/E2Manager/mocks/ran_reconnection_manager_mock.go @@ -12,18 +12,21 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -// + +// This source code is part of the near-RT RIC (RAN Intelligent Controller) +// platform project (RICP). + package mocks import ( "github.com/stretchr/testify/mock" ) -type RanReconnectionManagerMock struct { +type RanDisconnectionManagerMock struct { mock.Mock } -func (m *RanReconnectionManagerMock) ReconnectRan(inventoryName string) error { +func (m *RanDisconnectionManagerMock) DisconnectRan(inventoryName string) error { args := m.Called(inventoryName) return args.Error(0)