Attempt to fix race condition boot ls tests

See: https://www.pivotaltracker.com/story/show/175339205
This commit is contained in:
Kris De Volder
2020-10-19 14:27:03 -07:00
parent e42e544f16
commit d92572bc52
3 changed files with 17 additions and 39 deletions

View File

@@ -110,8 +110,8 @@ public class ActiveProfilesHoverTest {
"\n" +
"}"
);
editor.assertHighlights(/*NONE*/);
editor.assertHoverContains("@Profile", "Consider adding `spring-boot-actuator` as a dependency");
editor.assertNoHighlights();
}
@Test
@@ -162,7 +162,7 @@ public class ActiveProfilesHoverTest {
"\n" +
"}"
);
editor.assertHighlights(/*NONE*/);
editor.assertNoHover("@Profile");
editor.assertNoHighlights();
}
}