Skip to content

Commit

Permalink
[FLINK-1982] Rename MapTaskTest to FlatMapTaskTest
Browse files Browse the repository at this point in the history
  • Loading branch information
fhueske committed Oct 23, 2015
1 parent 05810bd commit 9df82a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -37,14 +37,14 @@
import org.junit.Assert;
import org.junit.Test;

public class MapTaskTest extends DriverTestBase<FlatMapFunction<Record, Record>> {
public class FlatMapTaskTest extends DriverTestBase<FlatMapFunction<Record, Record>> {

private static final Logger LOG = LoggerFactory.getLogger(MapTaskTest.class);
private static final Logger LOG = LoggerFactory.getLogger(FlatMapTaskTest.class);

private final CountingOutputCollector output = new CountingOutputCollector();


public MapTaskTest(ExecutionConfig config) {
public FlatMapTaskTest(ExecutionConfig config) {
super(config, 0, 0);
}

Expand Down
Expand Up @@ -31,7 +31,7 @@
import org.apache.flink.runtime.operators.DriverStrategy;
import org.apache.flink.runtime.operators.BatchTask;
import org.apache.flink.runtime.operators.FlatMapDriver;
import org.apache.flink.runtime.operators.MapTaskTest.MockMapStub;
import org.apache.flink.runtime.operators.FlatMapTaskTest.MockMapStub;
import org.apache.flink.runtime.operators.ReduceTaskTest.MockReduceStub;
import org.apache.flink.runtime.operators.shipping.ShipStrategyType;
import org.apache.flink.runtime.operators.testutils.TaskTestBase;
Expand Down

0 comments on commit 9df82a9

Please sign in to comment.