From 20f3ab0cd8d4cde30bd5114cf063b96ed6832ab3 Mon Sep 17 00:00:00 2001 From: Vladimir Krivosheev Date: Mon, 30 May 2016 14:28:41 +0200 Subject: [PATCH] fix InspectionProfileTest --- .../com/intellij/codeInspection/ex/InspectionProfileTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/java-tests/testSrc/com/intellij/codeInspection/ex/InspectionProfileTest.java b/java/java-tests/testSrc/com/intellij/codeInspection/ex/InspectionProfileTest.java index 689636692df6..e38307df86f9 100644 --- a/java/java-tests/testSrc/com/intellij/codeInspection/ex/InspectionProfileTest.java +++ b/java/java-tests/testSrc/com/intellij/codeInspection/ex/InspectionProfileTest.java @@ -453,7 +453,7 @@ public class InspectionProfileTest extends LightIdeaTestCase { } private static InspectionProfileImpl createProfile(@NotNull InspectionToolRegistrar registrar) { - InspectionProfileImpl base = new InspectionProfileImpl("Base", registrar, InspectionProfileManager.getInstance()); + InspectionProfileImpl base = new InspectionProfileImpl("Base", registrar, InspectionProfileManager.getInstance(), null, null); return new InspectionProfileImpl("Foo", registrar, InspectionProfileManager.getInstance(), base, null); }