INT-988: Unignore test case as upgrade to Spring 3.0.5 resolves the problem.

This commit is contained in:
Iwein Fuld
2010-10-22 16:54:05 +02:00
parent c6c9f51d37
commit 656071b2a7

View File

@@ -17,7 +17,6 @@
package org.springframework.integration.handler;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.integration.Message;
import org.springframework.integration.MessageHandlingException;
@@ -63,7 +62,6 @@ public class MethodInvokingMessageProcessorAnnotationTests {
processor.processMessage(new GenericMessage<String>("foo"));
}
@Ignore //see INT-988
@Test(expected = MessageHandlingException.class)
public void requiredHeaderNotProvidedOnSecondMessage() throws Exception {
Method method = TestService.class.getMethod("requiredHeader", Integer.class);