diff --git a/RegExpSupport/test/org/intellij/lang/regexp/RegExpCompletionTest.java b/RegExpSupport/test/org/intellij/lang/regexp/RegExpCompletionTest.java index abdee64fbc05..c674c11b31bd 100644 --- a/RegExpSupport/test/org/intellij/lang/regexp/RegExpCompletionTest.java +++ b/RegExpSupport/test/org/intellij/lang/regexp/RegExpCompletionTest.java @@ -60,7 +60,7 @@ public class RegExpCompletionTest extends CodeInsightFixtureTestCase { } public void testNamedCharacter() { - myFixture.configureByText(RegExpFileType.INSTANCE, "\\\\N{SMILE}"); + myFixture.configureByText(RegExpFileType.INSTANCE, "\\N{SMILE}"); final LookupElement[] elements = myFixture.completeBasic(); final List strings = ContainerUtil.map(elements, LookupElement::getLookupString); assertEquals(Arrays.asList("SMILE", "SMILING FACE WITH SMILING EYES", "SMILING FACE WITH HEART-SHAPED EYES", @@ -89,7 +89,9 @@ public class RegExpCompletionTest extends CodeInsightFixtureTestCase { } public void testPropertyAlpha() throws Throwable { - doTest(); + myFixture.configureByText(RegExpFileType.INSTANCE, "\\P{Alp}"); + myFixture.completeBasic(); + myFixture.checkResult("\\P{Alpha}"); } public void doTest() throws Throwable { diff --git a/RegExpSupport/testData/completion/PropertyAlpha.regexp b/RegExpSupport/testData/completion/PropertyAlpha.regexp deleted file mode 100644 index 96509136743d..000000000000 --- a/RegExpSupport/testData/completion/PropertyAlpha.regexp +++ /dev/null @@ -1 +0,0 @@ -\\p{Alp} diff --git a/RegExpSupport/testData/completion/PropertyAlphaExpected.regexp b/RegExpSupport/testData/completion/PropertyAlphaExpected.regexp deleted file mode 100644 index 03696e617f4c..000000000000 --- a/RegExpSupport/testData/completion/PropertyAlphaExpected.regexp +++ /dev/null @@ -1 +0,0 @@ -\\p{Alpha}