Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/6399#discussion_r204721035
--- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/operators/DataSinkTaskTest.java
---
@@ -363,7 +376,9 @@ public void testCancelDataSinkTask() throws Exception {
Configuration stubParams = new Configuration();
super.getTaskConfig().setStubParameters(stubParams);
- super.registerFileOutputTask(MockOutputFormat.class, new File(tempTestPath).toURI().toString());
+ File tempTestFile = tempFolder.newFile(tempTestFileName);
--- End diff --
same issue as in `JarFileCreatorTest`
---
|