Skip to content

Commit

Permalink
remove type def
Browse files Browse the repository at this point in the history
  • Loading branch information
an-tex committed Sep 10, 2024
1 parent c3dc4d7 commit cbf2ad1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class R2DbcProjectionSpec extends ScalaTestWithActorTestKit(ConfigFactory.parseS

override val retentionCriteria = RetentionCriteria.snapshotEvery(100, 2)

override def transformSnapshot(state: State): EventT = Event()
override def transformSnapshot(state: State) = Event()
}

override val name = "singleton"
Expand Down Expand Up @@ -176,7 +176,7 @@ class R2DbcProjectionSpec extends ScalaTestWithActorTestKit(ConfigFactory.parseS

override val retentionCriteria = RetentionCriteria.snapshotEvery(100, 2)

override def transformSnapshot(state: State): EventT = Event()
override def transformSnapshot(state: State) = Event()
}

override val name = randomName
Expand Down

0 comments on commit cbf2ad1

Please sign in to comment.