From fee2cf9121b28ef9e1a9bbb29ff1e9d000e33c79 Mon Sep 17 00:00:00 2001 From: anna Date: Tue, 20 Apr 2010 13:24:25 +0400 Subject: [PATCH] lower case first char as in test data --- .../com/intellij/codeInspection/NumericOverflowTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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()); }