Skip to content

Commit 54df530

Browse files
committed
moved non-working test to disabled mode
1 parent e32d37a commit 54df530

File tree

1 file changed

+13
-12
lines changed
  • headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/value/test

1 file changed

+13
-12
lines changed

headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/value/test/ValueCompletionTest.java

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import org.eclipse.lsp4j.TextDocumentIdentifier;
2727
import org.gradle.internal.impldep.com.google.common.collect.ImmutableList;
2828
import org.junit.jupiter.api.BeforeEach;
29+
import org.junit.jupiter.api.Disabled;
2930
import org.junit.jupiter.api.Test;
3031
import org.junit.jupiter.api.extension.ExtendWith;
3132
import org.springframework.beans.factory.annotation.Autowired;
@@ -295,18 +296,18 @@ void testPlainPrefixCompletion() throws Exception {
295296
}
296297

297298
// The parser removes the (spring.) piece from the AST in this case, so there is no way
298-
// to clearly identify this case
299-
//
300-
// @Test
301-
// void testComplexPrefixCompletionParamNameCursorRightAfterDot() throws Exception {
302-
// prepareCase("@Value(\"onField\")", "@Value(spring.<*>)");
303-
// prepareDefaultIndexData();
304-
//
305-
// assertPropertyCompletions(
306-
// "@Value(\"${spring.prop1}\"<*>)");
307-
//
308-
// assertClasspathCompletions();
309-
// }
299+
// to clearly identify this case
300+
@Test
301+
@Disabled
302+
void testComplexPrefixCompletionParamNameCursorRightAfterDot() throws Exception {
303+
prepareCase("@Value(\"onField\")", "@Value(spring.<*>)");
304+
prepareDefaultIndexData();
305+
306+
assertPropertyCompletions(
307+
"@Value(\"${spring.prop1}\"<*>)");
308+
309+
assertClasspathCompletions();
310+
}
310311

311312
@Test
312313
void testComplexPrefixCompletion() throws Exception {

0 commit comments

Comments
 (0)