Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/5766#discussion_r177800460 --- 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 -- Yes I wasn't so sure about this either. But we either override do it like this or override part of the global state that the `MiniClusterResource` modifies when it sets the context :/
---