From 76f62cb43b814ef905deb45152f453a53b0d177a Mon Sep 17 00:00:00 2001 From: BoykoAlex Date: Wed, 23 Nov 2016 14:55:43 -0500 Subject: [PATCH] Simplify the test not to use maven --- .../properties/test/ApplicationPropertiesEditorTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vscode-extensions/vscode-application-properties/src/test/java/org/springframework/ide/vscode/application/properties/test/ApplicationPropertiesEditorTest.java b/vscode-extensions/vscode-application-properties/src/test/java/org/springframework/ide/vscode/application/properties/test/ApplicationPropertiesEditorTest.java index 64b4434f6..994981b9b 100644 --- a/vscode-extensions/vscode-application-properties/src/test/java/org/springframework/ide/vscode/application/properties/test/ApplicationPropertiesEditorTest.java +++ b/vscode-extensions/vscode-application-properties/src/test/java/org/springframework/ide/vscode/application/properties/test/ApplicationPropertiesEditorTest.java @@ -1557,14 +1557,14 @@ public class ApplicationPropertiesEditorTest extends AbstractPropsEditorTest { } @Test public void testNoHoverForUnrecognizedProperty() throws Exception { - useProject(createPredefinedMavenProject("enums-boot-1.3.2-app")); - + // Thus property with letter 'g' exists. Important. + data("debug", "java.lang.String", null, "Some debug property."); Editor editor; editor = newEditor( - "my.ggggg: 6754" + "ggggg.kkkk: 6754" ); - editor.assertNoHover("my.ggggg"); + editor.assertNoHover("ggggg.kkkk"); } @Override