Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Guggemos <dominik.guggemos@bosch-si.com>
  • Loading branch information
dguggemos committed Mar 27, 2018
1 parent 8f3d94b commit f68ac72
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
public class AmqpConsumerActorTest {

private static final Config CONFIG = ConfigFactory.load("test");
private static final String CONNECTION_ID = "connection";

private static ActorSystem actorSystem;
private static ActorRef pubSubMediator;
Expand Down Expand Up @@ -159,7 +160,7 @@ public void plainStringMappingTest() throws IdConversionException {
final Props messageMappingProcessorProps =
MessageMappingProcessorActor.props(pubSubMediator, targetActorPath, getRef(),
AuthorizationContext.newInstance(AuthorizationSubject.newInstance("foo:bar")),
mappingProcessor);
mappingProcessor, CONNECTION_ID);

final ActorRef processor = actorSystem.actorOf(messageMappingProcessorProps,
MessageMappingProcessorActor.ACTOR_NAME + "-plainStringMappingTest");
Expand Down Expand Up @@ -210,7 +211,7 @@ private ActorRef setupActor(final ActorRef testActor, final List<MappingContext>
final Props messageMappingProcessorProps =
MessageMappingProcessorActor.props(pubSubMediator, pubSubTarget, testActor,
AuthorizationContext.newInstance(AuthorizationSubject.newInstance("foo:bar")),
mappingProcessor);
mappingProcessor, CONNECTION_ID);

final DefaultResizer resizer = new DefaultResizer(1, 5);

Expand Down

0 comments on commit f68ac72

Please sign in to comment.