Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/5068#discussion_r155490712
--- Diff:
flink-connectors/flink-orc/src/test/java/org/apache/flink/orc/OrcTableSourceTest.java
---
@@ -155,11 +160,14 @@ public void testProjectFields() throws Exception {
OrcTableSource spyTS = spy(projected);
OrcRowInputFormat mockIF = mock(OrcRowInputFormat.class);
doReturn(mockIF).when(spyTS).buildOrcInputFormat();
- spyTS.getDataSet(mock(ExecutionEnvironment.class));
+ ExecutionEnvironment env = mock(ExecutionEnvironment.class);
--- End diff --
why do we need the changes?
---