You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2018/09/07 13:39:52 UTC

[flink] 04/04: [hotfix][tests] Make JobMasterTest#EMPTY_TESTING_INPUT_SPLITS private.

This is an automated email from the ASF dual-hosted git repository.

trohrmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 1a5dea611c15083b4acfe2c937fffbdc00c620a3
Author: gyao <ga...@data-artisans.com>
AuthorDate: Fri Aug 31 08:19:58 2018 +0200

    [hotfix][tests] Make JobMasterTest#EMPTY_TESTING_INPUT_SPLITS private.
---
 .../src/test/java/org/apache/flink/runtime/jobmaster/JobMasterTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/jobmaster/JobMasterTest.java b/flink-runtime/src/test/java/org/apache/flink/runtime/jobmaster/JobMasterTest.java
index 30db715..9a2bc97 100644
--- a/flink-runtime/src/test/java/org/apache/flink/runtime/jobmaster/JobMasterTest.java
+++ b/flink-runtime/src/test/java/org/apache/flink/runtime/jobmaster/JobMasterTest.java
@@ -145,7 +145,7 @@ import static org.junit.Assert.fail;
  */
 public class JobMasterTest extends TestLogger {
 
-	static final TestingInputSplit[] EMPTY_TESTING_INPUT_SPLITS = new TestingInputSplit[0];
+	private static final TestingInputSplit[] EMPTY_TESTING_INPUT_SPLITS = new TestingInputSplit[0];
 
 	@ClassRule
 	public static TemporaryFolder temporaryFolder = new TemporaryFolder();