[hotfix][cli][tests] let CliFrontendRunTest extend from TestLogger
Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/795f59d2 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/795f59d2 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/795f59d2 Branch: refs/heads/release-1.5 Commit: 795f59d24a1a8d0decde92a9785efb75883d4cc7 Parents: 74e6441 Author: Nico Kruber <[email protected]> Authored: Fri Mar 9 10:56:31 2018 +0100 Committer: zentol <[email protected]> Committed: Wed Mar 14 20:47:28 2018 +0100 ---------------------------------------------------------------------- .../test/java/org/apache/flink/client/cli/CliFrontendRunTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/795f59d2/flink-clients/src/test/java/org/apache/flink/client/cli/CliFrontendRunTest.java ---------------------------------------------------------------------- diff --git a/flink-clients/src/test/java/org/apache/flink/client/cli/CliFrontendRunTest.java b/flink-clients/src/test/java/org/apache/flink/client/cli/CliFrontendRunTest.java index ebb76d8..69724f1 100644 --- a/flink-clients/src/test/java/org/apache/flink/client/cli/CliFrontendRunTest.java +++ b/flink-clients/src/test/java/org/apache/flink/client/cli/CliFrontendRunTest.java @@ -23,6 +23,7 @@ import org.apache.flink.client.program.PackagedProgram; import org.apache.flink.configuration.Configuration; import org.apache.flink.configuration.GlobalConfiguration; import org.apache.flink.runtime.jobgraph.SavepointRestoreSettings; +import org.apache.flink.util.TestLogger; import org.junit.BeforeClass; import org.junit.Test; @@ -37,7 +38,7 @@ import static org.junit.Assert.assertTrue; /** * Tests for the RUN command. */ -public class CliFrontendRunTest { +public class CliFrontendRunTest extends TestLogger { @BeforeClass public static void init() {
