Dispatcher -> Router
[aquarium] / src / test / scala / gr / grnet / aquarium / ConfiguratorTest.scala
index 5a408f8..deb07f6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2011 GRNET S.A. All rights reserved.
+ * Copyright 2011-2012 GRNET S.A. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or
  * without modification, are permitted provided that the following
@@ -35,7 +35,7 @@
 
 package gr.grnet.aquarium
 
-import actor.DispatcherRole
+import actor.RouterRole
 import org.junit.Test
 import org.junit.Assert._
 
@@ -65,7 +65,7 @@ class ConfiguratorTest {
   def testGetDispatcherActor: Unit = {
     val mc = Configurator.MasterConfigurator
     val ap = mc.actorProvider
-    val dispatcher = ap.actorForRole(DispatcherRole)
+    val dispatcher = ap.actorForRole(RouterRole)
   }
 
   @Test