You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2016/10/10 10:26:02 UTC

[5/5] flink git commit: [hotfix] [tests] Fix PowerMock warnings concerning log4j

[hotfix] [tests] Fix PowerMock warnings concerning log4j


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/33c36e62
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/33c36e62
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/33c36e62

Branch: refs/heads/master
Commit: 33c36e62a42d46f8aebe7b90ad91b529826136b6
Parents: c1825e3
Author: Stephan Ewen <se...@apache.org>
Authored: Mon Oct 10 12:22:38 2016 +0200
Committer: Stephan Ewen <se...@apache.org>
Committed: Mon Oct 10 12:22:38 2016 +0200

----------------------------------------------------------------------
 .../apache/flink/streaming/runtime/tasks/SourceStreamTaskTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/33c36e62/flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/tasks/SourceStreamTaskTest.java
----------------------------------------------------------------------
diff --git a/flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/tasks/SourceStreamTaskTest.java b/flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/tasks/SourceStreamTaskTest.java
index 10fc400..21c894e 100644
--- a/flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/tasks/SourceStreamTaskTest.java
+++ b/flink-streaming-java/src/test/java/org/apache/flink/streaming/runtime/tasks/SourceStreamTaskTest.java
@@ -53,7 +53,7 @@ import java.util.concurrent.atomic.AtomicLong;
  */
 @RunWith(PowerMockRunner.class)
 @PrepareForTest({ResultPartitionWriter.class})
-@PowerMockIgnore({"javax.management.*", "com.sun.jndi.*"})
+@PowerMockIgnore({"javax.management.*", "com.sun.jndi.*", "org.apache.log4j.*" })
 public class SourceStreamTaskTest {