Rename ErrorClose event to ErrorClosed

This commit is contained in:
Mathias 2013-01-23 11:47:12 +01:00
parent 7761b00122
commit 385fd322c9
4 changed files with 8 additions and 8 deletions

View file

@ -28,7 +28,7 @@ class IntegrationSpec extends AkkaSpec("akka.loglevel = INFO") with IntegrationS
val (clientHandler, clientConnection, serverHandler, serverConnection) = establishNewClientConnection()
clientHandler.send(clientConnection, Abort)
clientHandler.expectMsg(Aborted)
serverHandler.expectMsgType[ErrorClose]
serverHandler.expectMsgType[ErrorClosed]
verifyActorTermination(clientConnection)
verifyActorTermination(serverConnection)
}