No highlighting for 'no actuator' warning hovers.

This commit is contained in:
Kris De Volder
2017-11-01 10:52:49 -07:00
parent b1d8c988ff
commit 007d5c92a5
3 changed files with 4 additions and 4 deletions

View File

@@ -67,7 +67,7 @@ public class ActuatorWarningHoverTest {
"}"
);
editor.assertHighlights("@Profile");
editor.assertHighlights(/*NONE*/);
editor.assertHoverContains("@Profile", "No live hover information");
editor.assertHoverContains("@Profile", "Consider adding `spring-boot-actuator` as a dependency to your project `"+projectName+"`");
}
@@ -168,7 +168,7 @@ public class ActuatorWarningHoverTest {
" }\n" +
"}"
);
editor.assertHighlights("@Bean");
editor.assertHighlights(/*NONE*/);
editor.assertHoverContains("@Bean", "No live hover information");
editor.assertNoHover("the-bean-name");
}