From 3186c31ba7ffa669c2b24d0d150bd331c74b6939 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Wed, 25 Oct 2017 17:49:26 +0300 Subject: [PATCH] Initialize delegate runner before access in filter method --- .../org/jetbrains/kotlin/test/JUnit3RunnerWithInners.java | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/tests-common/org/jetbrains/kotlin/test/JUnit3RunnerWithInners.java b/compiler/tests-common/org/jetbrains/kotlin/test/JUnit3RunnerWithInners.java index 214b9665bec..1138e30bcdb 100644 --- a/compiler/tests-common/org/jetbrains/kotlin/test/JUnit3RunnerWithInners.java +++ b/compiler/tests-common/org/jetbrains/kotlin/test/JUnit3RunnerWithInners.java @@ -90,6 +90,7 @@ public class JUnit3RunnerWithInners extends Runner implements Filterable, Sortab @Override public void filter(Filter filter) throws NoTestsRemainException { + initialize(); delegateRunner.filter(filter); }