diff --git a/RegExpSupport/test/org/intellij/lang/regexp/RedundantEscapeInspectionTest.java b/RegExpSupport/test/org/intellij/lang/regexp/inspection/RedundantEscapeInspectionTest.java similarity index 88% rename from RegExpSupport/test/org/intellij/lang/regexp/RedundantEscapeInspectionTest.java rename to RegExpSupport/test/org/intellij/lang/regexp/inspection/RedundantEscapeInspectionTest.java index cbbb02a23860..d87eb7d89963 100644 --- a/RegExpSupport/test/org/intellij/lang/regexp/RedundantEscapeInspectionTest.java +++ b/RegExpSupport/test/org/intellij/lang/regexp/inspection/RedundantEscapeInspectionTest.java @@ -1,17 +1,15 @@ // Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -package org.intellij.lang.regexp; +package org.intellij.lang.regexp.inspection; import com.intellij.codeInspection.LocalInspectionTool; import org.intellij.lang.regexp.RegExpFileType; import org.intellij.lang.regexp.ecmascript.EcmaScriptRegexpLanguage; -import org.intellij.lang.regexp.inspection.RedundantEscapeInspection; -import org.intellij.lang.regexp.inspection.RegExpInspectionTestCase; import org.jetbrains.annotations.NotNull; /** * @author Bas Leijdekkers */ -@SuppressWarnings("RegExpRedundantEscape") +@SuppressWarnings({"RegExpRedundantEscape", "RegExpDuplicateCharacterInClass"}) public class RedundantEscapeInspectionTest extends RegExpInspectionTestCase { public void testSimple() { diff --git a/RegExpSupport/test/org/intellij/lang/regexp/RepeatedSpaceInspectionTest.java b/RegExpSupport/test/org/intellij/lang/regexp/inspection/RepeatedSpaceInspectionTest.java similarity index 91% rename from RegExpSupport/test/org/intellij/lang/regexp/RepeatedSpaceInspectionTest.java rename to RegExpSupport/test/org/intellij/lang/regexp/inspection/RepeatedSpaceInspectionTest.java index f715fe093119..bb343f5a8150 100644 --- a/RegExpSupport/test/org/intellij/lang/regexp/RepeatedSpaceInspectionTest.java +++ b/RegExpSupport/test/org/intellij/lang/regexp/inspection/RepeatedSpaceInspectionTest.java @@ -1,16 +1,15 @@ // Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -package org.intellij.lang.regexp; +package org.intellij.lang.regexp.inspection; import com.intellij.codeInspection.LocalInspectionTool; +import org.intellij.lang.regexp.RegExpFileType; import org.intellij.lang.regexp.ecmascript.EcmaScriptRegexpLanguage; -import org.intellij.lang.regexp.inspection.RegExpInspectionTestCase; -import org.intellij.lang.regexp.inspection.RepeatedSpaceInspection; import org.jetbrains.annotations.NotNull; /** * @author Bas Leijdekkers */ -@SuppressWarnings({"RegExpRepeatedSpace", "RegExpRedundantEscape"}) +@SuppressWarnings({"RegExpRepeatedSpace", "RegExpRedundantEscape", "RegExpDuplicateCharacterInClass"}) public class RepeatedSpaceInspectionTest extends RegExpInspectionTestCase { public void testSimple() {