From f3155f86fafa523b06889b690e53071db232b15e Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Tue, 3 Jan 2012 11:30:45 -0500 Subject: [PATCH] corrected reversed test method names --- .../integration/aop/PublisherAnnotationAdvisorTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-integration-core/src/test/java/org/springframework/integration/aop/PublisherAnnotationAdvisorTests.java b/spring-integration-core/src/test/java/org/springframework/integration/aop/PublisherAnnotationAdvisorTests.java index 97c9f9596f..49a4257255 100644 --- a/spring-integration-core/src/test/java/org/springframework/integration/aop/PublisherAnnotationAdvisorTests.java +++ b/spring-integration-core/src/test/java/org/springframework/integration/aop/PublisherAnnotationAdvisorTests.java @@ -51,7 +51,7 @@ public class PublisherAnnotationAdvisorTests { @Test - public void annotationAtMethodLevel() { + public void annotationAtMethodLevelOnVoidReturnWithParamAnnotation() { PublisherAnnotationAdvisor advisor = new PublisherAnnotationAdvisor(); advisor.setBeanFactory(context); QueueChannel testChannel = context.getBean("testChannel", QueueChannel.class); @@ -65,7 +65,7 @@ public class PublisherAnnotationAdvisorTests { } @Test - public void annotationAtMethodLevelOnVoidReturnWithParamAnnotation() { + public void annotationAtMethodLevel() { PublisherAnnotationAdvisor advisor = new PublisherAnnotationAdvisor(); advisor.setBeanFactory(context); QueueChannel testChannel = context.getBean("testChannel", QueueChannel.class);