remove not needed curly braces (#29392)
This commit is contained in:
parent
1290befec8
commit
073ef663c5
1 changed files with 2 additions and 2 deletions
|
|
@ -453,7 +453,7 @@ class InteractionPatternsSpec extends ScalaTestWithActorTestKit with AnyWordSpec
|
|||
"contain a sample for ask from outside the actor system" in {
|
||||
// #standalone-ask
|
||||
object CookieFabric {
|
||||
sealed trait Command {}
|
||||
sealed trait Command
|
||||
case class GiveMeCookies(count: Int, replyTo: ActorRef[Reply]) extends Command
|
||||
|
||||
sealed trait Reply
|
||||
|
|
@ -520,7 +520,7 @@ class InteractionPatternsSpec extends ScalaTestWithActorTestKit with AnyWordSpec
|
|||
"contain a sample for ask with status from outside the actor system" in {
|
||||
// #standalone-ask-with-status
|
||||
object CookieFabric {
|
||||
sealed trait Command {}
|
||||
sealed trait Command
|
||||
case class GiveMeCookies(count: Int, replyTo: ActorRef[StatusReply[Cookies]]) extends Command
|
||||
case class Cookies(count: Int)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue