From 35fb5faad8d9d6ff6bbbb1ab6b9b53c7fb31f1ae Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Fri, 3 Feb 2012 15:05:55 +0400 Subject: [PATCH] Trying to fix the test --- compiler/tests/org/jetbrains/jet/codegen/TestlibTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/tests/org/jetbrains/jet/codegen/TestlibTest.java b/compiler/tests/org/jetbrains/jet/codegen/TestlibTest.java index 32cdc787a9f..d30797cdb6c 100644 --- a/compiler/tests/org/jetbrains/jet/codegen/TestlibTest.java +++ b/compiler/tests/org/jetbrains/jet/codegen/TestlibTest.java @@ -3,6 +3,7 @@ package org.jetbrains.jet.codegen; import com.intellij.openapi.vfs.VirtualFile; import com.intellij.openapi.vfs.local.CoreLocalFileSystem; import gnu.trove.THashSet; +import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestResult; import junit.framework.TestSuite; @@ -27,7 +28,7 @@ import java.util.Set; */ public class TestlibTest extends CodegenTestCase { - public static TestSuite suite() { + public static Test suite() { return new TestlibTest().buildSuite(); }