Fix compilation
This commit is contained in:
+5
-4
@@ -1,5 +1,6 @@
|
|||||||
package org.jetbrains.jet.completion;
|
package org.jetbrains.jet.completion;
|
||||||
|
|
||||||
|
import junit.framework.Test;
|
||||||
import junit.framework.TestSuite;
|
import junit.framework.TestSuite;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.jet.JetTestCaseBuilder;
|
import org.jetbrains.jet.JetTestCaseBuilder;
|
||||||
@@ -10,11 +11,11 @@ import java.io.File;
|
|||||||
/**
|
/**
|
||||||
* @author Nikolay.Krasko
|
* @author Nikolay.Krasko
|
||||||
*/
|
*/
|
||||||
public class JetBasicCompletion extends JetCompletionTestBase {
|
public class JetBasicCompletionTest extends JetCompletionTestBase {
|
||||||
private final String myPath;
|
private final String myPath;
|
||||||
private final String myName;
|
private final String myName;
|
||||||
|
|
||||||
public JetBasicCompletion(@NotNull String path, @NotNull String name) {
|
public JetBasicCompletionTest(@NotNull String path, @NotNull String name) {
|
||||||
myPath = path;
|
myPath = path;
|
||||||
myName = name;
|
myName = name;
|
||||||
|
|
||||||
@@ -48,8 +49,8 @@ public class JetBasicCompletion extends JetCompletionTestBase {
|
|||||||
|
|
||||||
@NotNull
|
@NotNull
|
||||||
@Override
|
@Override
|
||||||
public junit.framework.Test createTest(@NotNull String dataPath, @NotNull String name) {
|
public Test createTest(@NotNull String dataPath, @NotNull String name, @NotNull File file) {
|
||||||
return new JetBasicCompletion(dataPath, name);
|
return new JetBasicCompletionTest(dataPath, name);
|
||||||
}
|
}
|
||||||
}, suite);
|
}, suite);
|
||||||
|
|
||||||
Reference in New Issue
Block a user