@@ -20,16 +20,14 @@ import app.softnetwork.notification.persistence.typed.{
2020import app .softnetwork .notification .spi .FcmMockProvider
2121import app .softnetwork .persistence .query .{InMemoryJournalProvider , InMemoryOffsetProvider }
2222import app .softnetwork .scheduler .config .SchedulerSettings
23- import app .softnetwork .session .service .SessionMaterials
2423import com .typesafe .config .Config
2524import org .scalatest .Suite
2625import org .slf4j .{Logger , LoggerFactory }
27- import org .softnetwork .session .model .Session
2826
2927trait AllNotificationsTestKit
3028 extends NotificationGrpcServer [Notification ]
3129 with NotificationTestKit [Notification ]
32- with ApnsToken { _ : Suite with SessionMaterials [ Session ] =>
30+ with ApnsToken { _ : Suite =>
3331
3432 lazy val apnsPort : Int = availablePort
3533
@@ -50,7 +48,7 @@ trait AllNotificationsTestKit
5048 assert(
5149 new ApnsMockServer with InternalConfig {
5250 lazy val log : Logger = LoggerFactory getLogger getClass.getName
53- override implicit def system : ActorSystem [_] = ts
51+ override implicit def system : ActorSystem [_] = asystem
5452
5553 override def serverPort : Int = apnsPort
5654
@@ -60,7 +58,7 @@ trait AllNotificationsTestKit
6058 assert(
6159 new SMSMockServer with InternalConfig {
6260 lazy val log : Logger = LoggerFactory getLogger getClass.getName
63- override implicit def system : ActorSystem [_] = ts
61+ override implicit def system : ActorSystem [_] = asystem
6462
6563 override def serverPort : Int = smsPort
6664
@@ -70,7 +68,7 @@ trait AllNotificationsTestKit
7068 assert(
7169 new SmtpMockServer with InternalConfig {
7270 lazy val log : Logger = LoggerFactory getLogger getClass.getName
73- override implicit def system : ActorSystem [_] = ts
71+ override implicit def system : ActorSystem [_] = asystem
7472
7573 override def serverPort : Int = smtpPort
7674
0 commit comments