From 4dd28d00094639b675369f2888b309d1d23ff274 Mon Sep 17 00:00:00 2001 From: The Alchemist Date: Wed, 6 Jun 2018 15:50:04 -0400 Subject: [PATCH] No InterruptedException in TestSplitterAggregator * InterruptedException is not thrown by the `TestSplitterAggregator.testSearch()` * Remove bad javadoc --- .../samples/splitteraggregator/TestSplitterAggregator.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/intermediate/splitter-aggregator-reaper/src/test/java/org/springframework/integration/samples/splitteraggregator/TestSplitterAggregator.java b/intermediate/splitter-aggregator-reaper/src/test/java/org/springframework/integration/samples/splitteraggregator/TestSplitterAggregator.java index 26ebd114..6318deb7 100644 --- a/intermediate/splitter-aggregator-reaper/src/test/java/org/springframework/integration/samples/splitteraggregator/TestSplitterAggregator.java +++ b/intermediate/splitter-aggregator-reaper/src/test/java/org/springframework/integration/samples/splitteraggregator/TestSplitterAggregator.java @@ -51,11 +51,9 @@ public class TestSplitterAggregator { /** * Test the happy path. - * - * @throws InterruptedException */ @Test - public void testSearch() throws InterruptedException { + public void testSearch() { CompositeResult result = searchRequestor.search(TestUtils.getCompositeCriteria()); assertEquals(2, result.getResults().size()); }