INT-1129 fixed pointcut in test to refer to new MessageHandler location

This commit is contained in:
Mark Fisher
2010-07-28 15:11:58 +00:00
parent 80a22b8a2c
commit 8ca521c377

View File

@@ -72,7 +72,7 @@ public class MessagingAnnotationPostProcessorAopIntegrationTests {
@Aspect
public static class HandlerAspect {
@Before("execution(* org.springframework.integration.message.MessageHandler+.*(..)) && args(message)")
@Before("execution(* org.springframework.integration.core.MessageHandler+.*(..)) && args(message)")
public void addOneHundred(Message<?> message) {
((AtomicInteger) message.getPayload()).addAndGet(100);
}