X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=E2Manager%2Fhandlers%2Fx2_reset_response_handler_test.go;h=8846501886199be2629d5904c7c4abdec78f89a4;hb=refs%2Fchanges%2F98%2F798%2F1;hp=a99ea62347425ea0b115e1eba8e1532331ae09f6;hpb=ba04c48f4452b1811053a13bcf153970e9878abc;p=ric-plt%2Fe2mgr.git diff --git a/E2Manager/handlers/x2_reset_response_handler_test.go b/E2Manager/handlers/x2_reset_response_handler_test.go index a99ea62..8846501 100644 --- a/E2Manager/handlers/x2_reset_response_handler_test.go +++ b/E2Manager/handlers/x2_reset_response_handler_test.go @@ -62,9 +62,7 @@ func TestX2ResetResponseSuccess(t *testing.T) { h.Handle(log,e2Sessions, ¬ificationRequest, messageChannel) - if _, ok := e2Sessions[string(xaction)]; ok { - t.Errorf("want: no session entry, got: session entry for: %s", string(xaction) ) - } + //TODO:Nothing to verify } func TestX2ResetResponseReaderFailure(t *testing.T) { @@ -94,9 +92,7 @@ func TestX2ResetResponseReaderFailure(t *testing.T) { h.Handle(log,e2Sessions, ¬ificationRequest, messageChannel) - if _, ok := e2Sessions[string(xaction)]; ok { - t.Errorf("want: no session entry, got: session entry for: %s", string(xaction) ) - } + //TODO:Nothing to verify } func TestX2ResetResponseUnpackFailure(t *testing.T) { @@ -126,7 +122,5 @@ func TestX2ResetResponseUnpackFailure(t *testing.T) { h.Handle(log,e2Sessions, ¬ificationRequest, messageChannel) - if _, ok := e2Sessions[string(xaction)]; ok { - t.Errorf("want: no session entry, got: session entry for: %s", string(xaction) ) - } + //TODO:Nothing to verify }