Skip to content
Snippets Groups Projects
Commit 4f9044eb authored by Christian Wulf's avatar Christian Wulf
Browse files

fixes #205;

fixes #206
parent 310c1894
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,6 @@ import teetime.stage.CollectorSink; ...@@ -33,7 +33,6 @@ import teetime.stage.CollectorSink;
import teetime.stage.InitialElementProducer; import teetime.stage.InitialElementProducer;
import teetime.util.framework.port.PortAction; import teetime.util.framework.port.PortAction;
//@Ignore
public class DynamicDistributorTest { public class DynamicDistributorTest {
@Test @Test
...@@ -101,7 +100,7 @@ public class DynamicDistributorTest { ...@@ -101,7 +100,7 @@ public class DynamicDistributorTest {
assertThat(config.getOutputElements(), contains(0, 1, 2, 4, 5)); assertThat(config.getOutputElements(), contains(0, 1, 2, 4, 5));
assertValuesForIndex(inputActions[0], Collections.<Integer> emptyList()); assertValuesForIndex(inputActions[0], Collections.<Integer> emptyList());
assertValuesForIndex(inputActions[2], Arrays.asList(3)); // FIXME fails sometimes assertValuesForIndex(inputActions[2], Arrays.asList(3));
assertValuesForIndex(inputActions[3], Collections.<Integer> emptyList()); assertValuesForIndex(inputActions[3], Collections.<Integer> emptyList());
} }
...@@ -123,7 +122,7 @@ public class DynamicDistributorTest { ...@@ -123,7 +122,7 @@ public class DynamicDistributorTest {
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
CollectorSink<Integer> collectorSink = (CollectorSink<Integer>) stage; CollectorSink<Integer> collectorSink = (CollectorSink<Integer>) stage;
assertThat(collectorSink.getElements(), is(values)); // FIXME fails sometimes with a ConcurrentModificationException assertThat(collectorSink.getElements(), is(values));
} }
private static class DynamicDistributorTestConfig<T> extends Configuration { private static class DynamicDistributorTestConfig<T> extends Configuration {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment