From f4c91915bbfe67983c9ccdc500f84c8825769646 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Mon, 28 Jan 2013 20:20:37 +0400 Subject: [PATCH] Fixed tests by running super.tearDown() --- compiler/tests/org/jetbrains/jet/codegen/ScriptGenTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/tests/org/jetbrains/jet/codegen/ScriptGenTest.java b/compiler/tests/org/jetbrains/jet/codegen/ScriptGenTest.java index 34f3f0b3a8e..27d4d934e1c 100644 --- a/compiler/tests/org/jetbrains/jet/codegen/ScriptGenTest.java +++ b/compiler/tests/org/jetbrains/jet/codegen/ScriptGenTest.java @@ -46,6 +46,7 @@ public class ScriptGenTest extends CodegenTestCase { @Override protected void tearDown() throws Exception { scriptInstance = null; + super.tearDown(); } private void blackBoxScript(String filename) {