diff --git a/connect/core/src/test/scala/org/hyperledger/identus/connect/core/service/ConnectionServiceNotifierSpec.scala b/connect/core/src/test/scala/org/hyperledger/identus/connect/core/service/ConnectionServiceNotifierSpec.scala index 0a3a4bd710..b9e54811b9 100644 --- a/connect/core/src/test/scala/org/hyperledger/identus/connect/core/service/ConnectionServiceNotifierSpec.scala +++ b/connect/core/src/test/scala/org/hyperledger/identus/connect/core/service/ConnectionServiceNotifierSpec.scala @@ -52,7 +52,6 @@ object ConnectionServiceNotifierSpec extends ZIOSpecDefault { result = Expectation.value(record.copy(protocolState = ProtocolState.ConnectionResponseSent)) ) - /* private val inviteeExpectations = MockConnectionService.ReceiveConnectionInvitation( assertion = Assertion.anything, @@ -67,7 +66,6 @@ object ConnectionServiceNotifierSpec extends ZIOSpecDefault { assertion = Assertion.anything, result = Expectation.value(record.copy(protocolState = ProtocolState.ConnectionResponseReceived)) ) - */ override def spec: Spec[TestEnvironment & Scope, Any] = { suite("ConnectionServiceWithEventNotificationImpl")( @@ -151,10 +149,10 @@ object ConnectionServiceNotifierSpec extends ZIOSpecDefault { ZLayer.succeed(50) >>> EventNotificationServiceImpl.layer, ( ConnectionRepositoryInMemory.layer ++ - inviterExpectations.toLayer + inviteeExpectations.toLayer ) >>> ConnectionServiceNotifier.layer, ZLayer.succeed(WalletAccessContext(WalletId.random)) - ) @@ TestAspect.ignore // TODO fix the test + ) ) }