[RICPLT-1703] - Reset Request - after acceptance
[ric-plt/e2mgr.git] / E2Manager / handlers / x2_reset_response_handler_test.go
index a99ea62..8846501 100644 (file)
@@ -62,9 +62,7 @@ func TestX2ResetResponseSuccess(t *testing.T) {
 
        h.Handle(log,e2Sessions, &notificationRequest, 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, &notificationRequest, 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, &notificationRequest, messageChannel)
 
-       if _, ok := e2Sessions[string(xaction)]; ok {
-               t.Errorf("want: no session entry, got: session entry for: %s", string(xaction) )
-       }
+       //TODO:Nothing to verify
 }