diff --git a/java/typeMigration/test/com/intellij/codeInsight/inspections/GuavaInspectionTest.java b/java/typeMigration/test/com/intellij/codeInsight/inspections/GuavaInspectionTest.java index 3d44edff0b5c..69292d189729 100644 --- a/java/typeMigration/test/com/intellij/codeInsight/inspections/GuavaInspectionTest.java +++ b/java/typeMigration/test/com/intellij/codeInsight/inspections/GuavaInspectionTest.java @@ -40,7 +40,6 @@ import java.util.List; /** * @author Dmitry Batkovich */ -@Bombed(user = "develar", month = Calendar.MAY, day = 1) public class GuavaInspectionTest extends JavaCodeInsightFixtureTestCase { private GuavaInspection myInspection; @@ -59,7 +58,7 @@ public class GuavaInspectionTest extends JavaCodeInsightFixtureTestCase { @Override protected void tuneFixture(JavaModuleFixtureBuilder moduleBuilder) throws Exception { moduleBuilder.setLanguageLevel(LanguageLevel.JDK_1_8); - moduleBuilder.addLibraryJars("guava", PathManager.getHomePathFor(Assert.class) + "/lib/", "guava-21.0.jar"); + moduleBuilder.addLibraryJars("guava", getTestDataPath() + "/", "guava-stubs.jar"); moduleBuilder.addLibraryJars("jsr305", PathManager.getHomePathFor(Assert.class) + "/lib/", "jsr305.jar"); moduleBuilder.addJdk(IdeaTestUtil.getMockJdk18Path().getPath()); } diff --git a/java/typeMigration/testData/inspections/guava/guava-stubs.jar b/java/typeMigration/testData/inspections/guava/guava-stubs.jar new file mode 100644 index 000000000000..f491693f6c9e Binary files /dev/null and b/java/typeMigration/testData/inspections/guava/guava-stubs.jar differ