Long is not an Int, #26733

* changed when fixing warnings
This commit is contained in:
Patrik Nordwall 2019-04-15 15:55:42 +02:00
parent ee67c113e5
commit e320846f2b

View file

@ -55,9 +55,9 @@ abstract class RemoteRestartedQuarantinedSpec extends RemotingMultiNodeSpec(Remo
override def initialParticipants = 2
def identifyWithUid(role: RoleName, actorName: String): (Int, ActorRef) = {
def identifyWithUid(role: RoleName, actorName: String): (Long, ActorRef) = {
system.actorSelection(node(role) / "user" / actorName) ! "identify"
expectMsgType[(Int, ActorRef)]
expectMsgType[(Long, ActorRef)]
}
"A restarted quarantined system" must {