Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/5766#discussion_r177773812 --- Diff: flink-test-utils-parent/flink-test-utils/src/main/java/org/apache/flink/test/util/MiniClusterResource.java --- @@ -69,6 +73,10 @@ private int numberSlots = -1; + private Collection<Path> jarFiles = Collections.emptyList(); + + private Collection<URL> classPaths = Collections.emptyList(); --- End diff -- I think the `jarFiles` and the `classPaths` should not be part of the `MiniClusterResource`, because they belong to the client context.
---