@@ -21,14 +21,13 @@ public class WorkflowTest extends AbstractContainerBaseTest {
2121 @ Before
2222 public void before () throws SpawnException {
2323 joeActorRef = spawnSystem .createActorRef (
24- ActorIdentity .of (spawnSystemName , "joe " ));
24+ ActorIdentity .of (spawnSystemName , "JoeActor " ));
2525 }
2626
2727 @ Test
2828 public void testBroadcastBuilder () {
2929 Broadcast broadcast = Broadcast .to ("test.channel" , "hi" , Actor .Request .getDefaultInstance ());
3030 final Protocol .Broadcast protocolBroadcast = broadcast .build ();
31- assertEquals ("hi" , protocolBroadcast .getChannelGroup ());
3231 assertEquals ("test.channel" , protocolBroadcast .getChannelGroup ());
3332 assertNotNull (protocolBroadcast .getValue ());
3433 }
@@ -38,15 +37,15 @@ public void testForwardBuilder() throws Exception {
3837 Forward forward = Forward .to (joeActorRef , "hi" );
3938 final Protocol .Forward protocolForward = forward .build ();
4039 assertEquals ("hi" , protocolForward .getActionName ());
41- assertEquals ("joe " , protocolForward .getActor ());
40+ assertEquals ("JoeActor " , protocolForward .getActor ());
4241 }
4342
4443 @ Test
4544 public void testPipeBuilder () throws Exception {
4645 Pipe pipe = Pipe .to (joeActorRef , "hi" );
4746 final Protocol .Pipe protocolPipe = pipe .build ();
4847 assertEquals ("hi" , protocolPipe .getActionName ());
49- assertEquals ("joe " , protocolPipe .getActor ());
48+ assertEquals ("JoeActor " , protocolPipe .getActor ());
5049 }
5150
5251 @ Test
@@ -56,6 +55,6 @@ public void testSideEffectBuilder() throws Exception {
5655 Protocol .InvocationRequest request = protocolSideEffect .getRequest ();
5756 assertNotNull (request );
5857 assertEquals ("hi" , request .getActionName ());
59- assertEquals ("joe " , request .getActor ().getId ().getName ());
58+ assertEquals ("JoeActor " , request .getActor ().getId ().getName ());
6059 }
6160}
0 commit comments