Skip to content

Commit

Permalink
try to fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Feb 9, 2025
1 parent 6219c94 commit a44e984
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ class EventsBySliceSpec
PersistenceTestKitReadJournal.Identifier)

private val queriesJava =
persistenceQuery.getReadJournalFor(JavaPersistenceTestKitReadJournal.Identifier)
persistenceQuery.getReadJournalFor[JavaPersistenceTestKitReadJournal](
JavaPersistenceTestKitReadJournal.Identifier)

def setup(persistenceId: String): ActorRef[Command] = {
val probe = createTestProbe[Done]()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ class EventsByTagSpec
PersistenceTestKitReadJournal.Identifier)

private val queriesJava =
persistenceQuery.getReadJournalFor(JavaPersistenceTestKitReadJournal.Identifier)
persistenceQuery.getReadJournalFor[JavaPersistenceTestKitReadJournal](
JavaPersistenceTestKitReadJournal.Identifier)

def setup(persistenceId: String, tags: Set[String]): ActorRef[Command] = {
val probe = createTestProbe[Done]()
Expand Down

0 comments on commit a44e984

Please sign in to comment.