From c5d87ba3fafded97a76acbf3ebf176c1b7d41c25 Mon Sep 17 00:00:00 2001
From: Christian Wulf <chw@informatik.uni-kiel.de>
Date: Tue, 3 Mar 2015 18:09:48 +0100
Subject: [PATCH] fixed using wrong result list

---
 .../teetime/stage/opad/filter/AnomalyDetectionFilterTest.java | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/test/java/teetime/stage/opad/filter/AnomalyDetectionFilterTest.java b/src/test/java/teetime/stage/opad/filter/AnomalyDetectionFilterTest.java
index c0c8e026..857592e2 100644
--- a/src/test/java/teetime/stage/opad/filter/AnomalyDetectionFilterTest.java
+++ b/src/test/java/teetime/stage/opad/filter/AnomalyDetectionFilterTest.java
@@ -27,8 +27,6 @@ import org.junit.Before;
 import org.junit.Ignore;
 import org.junit.Test;
 
-import teetime.stage.opad.filter.AnomalyDetectionFilter;
-
 import kieker.tools.opad.record.StorableDetectionResult;
 
 /**
@@ -67,7 +65,7 @@ public class AnomalyDetectionFilterTest {
 		test(adf).and().send(input1, input2).to(adf.getInputPort()).and().receive(resultsNormalPort).from(adf.getOutputPortNormal()).start();
 		assertThat(resultsNormalPort, contains(input1, input2));
 
-		test(adf).and().send(input1, input2).to(adf.getInputPort()).and().receive(resultsNormalPort).from(adf.getOutputPortAnnormal()).start();
+		test(adf).and().send(input1, input2).to(adf.getInputPort()).and().receive(resultsAnnormalPort).from(adf.getOutputPortAnnormal()).start();
 		assertEquals(0, resultsAnnormalPort.size());
 
 	}
-- 
GitLab