diff --git a/java/java-tests/testSrc/com/intellij/codeInspection/NumericOverflowTest.java b/java/java-tests/testSrc/com/intellij/codeInspection/NumericOverflowTest.java index ced6335b068a..55a71ecbf829 100644 --- a/java/java-tests/testSrc/com/intellij/codeInspection/NumericOverflowTest.java +++ b/java/java-tests/testSrc/com/intellij/codeInspection/NumericOverflowTest.java @@ -1,7 +1,6 @@ package com.intellij.codeInspection; import com.intellij.JavaTestUtil; -import com.intellij.codeInspection.defUse.DefUseInspection; import com.intellij.testFramework.InspectionTestCase; public class NumericOverflowTest extends InspectionTestCase { @@ -11,7 +10,7 @@ public class NumericOverflowTest extends InspectionTestCase { } private void doTest() throws Exception { - doTest("numericOverflow/" + getTestName(false), new NumericOverflowInspection()); + doTest("numericOverflow/" + getTestName(true), new NumericOverflowInspection()); }