Is this private[redis] intentional? I'm attempting to stub out my read journal in my application tests but this seems to be preventing me from doing so.
[error] AppActorTest.scala:16: constructor ScalaReadJournal in class ScalaReadJournal cannot be accessed in <$anon: akka.persistence.query.journal.redis.ScalaReadJournal>
[error] val stubbedReadJournal: ScalaReadJournal = new ScalaReadJournal {
[error] ^
[error] one error found
https://github.com/safety-data/akka-persistence-redis/blob/897f31698a9c61fbb19eeef5135dfdd2a090b2b4/src/main/scala/akka/persistence/query/journal/redis/ScalaReadJournal.scala#L36
Is this
private[redis]
intentional? I'm attempting to stub out my read journal in my application tests but this seems to be preventing me from doing so.