=pro #3759 Changed to using non-deprecated ScalaTest Matchers

This commit is contained in:
Björn Antonsson 2013-12-17 14:25:56 +01:00
parent b8c7d7badd
commit 003609c9c5
246 changed files with 2822 additions and 2822 deletions

View file

@ -21,11 +21,11 @@ class ClusterMessageSerializerSpec extends AkkaSpec(
obj match {
case env: GossipEnvelope
val env2 = obj.asInstanceOf[GossipEnvelope]
env2.from must be(env.from)
env2.to must be(env.to)
env2.gossip must be(env.gossip)
env2.from should be(env.from)
env2.to should be(env.to)
env2.gossip should be(env.gossip)
case _
ref must be(obj)
ref should be(obj)
}
}