=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

@ -6,7 +6,7 @@ package sample.multinode
//#imports
import org.scalatest.{ BeforeAndAfterAll, WordSpecLike }
import org.scalatest.matchers.MustMatchers
import org.scalatest.Matchers
import akka.remote.testkit.MultiNodeSpecCallbacks
//#imports
@ -15,7 +15,7 @@ import akka.remote.testkit.MultiNodeSpecCallbacks
* Hooks up MultiNodeSpec with ScalaTest
*/
trait STMultiNodeSpec extends MultiNodeSpecCallbacks
with WordSpecLike with MustMatchers with BeforeAndAfterAll {
with WordSpecLike with Matchers with BeforeAndAfterAll {
override def beforeAll() = multiNodeSpecBeforeAll()