From d64e31e8d6043e1b4a1ec5c226a030ba755f9bec Mon Sep 17 00:00:00 2001 From: "Gregory.Shrago" Date: Tue, 26 Mar 2013 22:21:25 +0400 Subject: [PATCH] SQL quoted identifiers handling reworked & IDEA-103850 --- .../com/jetbrains/python/PyClassNameCompletionTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/testSrc/com/jetbrains/python/PyClassNameCompletionTest.java b/python/testSrc/com/jetbrains/python/PyClassNameCompletionTest.java index c4fea2e2093a..2052c3fd41a4 100644 --- a/python/testSrc/com/jetbrains/python/PyClassNameCompletionTest.java +++ b/python/testSrc/com/jetbrains/python/PyClassNameCompletionTest.java @@ -1,6 +1,7 @@ package com.jetbrains.python; import com.intellij.codeInsight.completion.CompletionType; +import com.intellij.codeInsight.lookup.Lookup; import com.jetbrains.python.codeInsight.PyCodeInsightSettings; import com.jetbrains.python.fixtures.PyTestCase; @@ -59,7 +60,7 @@ public class PyClassNameCompletionTest extends PyTestCase { myFixture.configureFromTempProjectFile(getTestName(true) + ".py"); myFixture.complete(CompletionType.BASIC, 2); if (myFixture.getLookupElements() != null) { - myFixture.finishLookup(); + myFixture.finishLookup(Lookup.NORMAL_SELECT_CHAR); } myFixture.checkResultByFile(path + "/" + getTestName(true) + ".after.py", true); }