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/01/13 15:05:01 UTC

[4/4] flink git commit: [hotfix][tests] Add TestLogger to ExponentialWaitStrategyTest

[hotfix][tests] Add TestLogger to ExponentialWaitStrategyTest


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

Branch: refs/heads/master
Commit: 598d96c105a34b20c16ace9f4b56d663dac670d6
Parents: 9eda3db
Author: gyao <ga...@data-artisans.com>
Authored: Fri Jan 12 09:25:45 2018 +0100
Committer: Till Rohrmann <tr...@apache.org>
Committed: Sat Jan 13 16:01:32 2018 +0100

----------------------------------------------------------------------
 .../client/program/rest/retry/ExponentialWaitStrategyTest.java   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/598d96c1/flink-clients/src/test/java/org/apache/flink/client/program/rest/retry/ExponentialWaitStrategyTest.java
----------------------------------------------------------------------
diff --git a/flink-clients/src/test/java/org/apache/flink/client/program/rest/retry/ExponentialWaitStrategyTest.java b/flink-clients/src/test/java/org/apache/flink/client/program/rest/retry/ExponentialWaitStrategyTest.java
index 747ab6c..23e9ff6 100644
--- a/flink-clients/src/test/java/org/apache/flink/client/program/rest/retry/ExponentialWaitStrategyTest.java
+++ b/flink-clients/src/test/java/org/apache/flink/client/program/rest/retry/ExponentialWaitStrategyTest.java
@@ -18,6 +18,8 @@
 
 package org.apache.flink.client.program.rest.retry;
 
+import org.apache.flink.util.TestLogger;
+
 import org.junit.Test;
 
 import static org.hamcrest.Matchers.containsString;
@@ -28,7 +30,7 @@ import static org.junit.Assert.fail;
 /**
  * Tests for {@link ExponentialWaitStrategy}.
  */
-public class ExponentialWaitStrategyTest {
+public class ExponentialWaitStrategyTest extends TestLogger {
 
 	@Test
 	public void testNegativeInitialWait() {