Skip to content

Commit d75a708

Browse files
spacing
1 parent ead4c41 commit d75a708

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/test/java/io/openliberty/tools/intellij/it/SingleModJakartaLSTestCommon.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public void testJakartaDiagnosticsInJavaPart() {
123123
// validate the method signature is no longer set to public
124124
TestUtils.validateStringNotInFile(pathToSrc.toString(), publicString);
125125

126-
//there should be a diagnostic for "private" on method signature - move cursor to hover point
126+
// there should be a diagnostic for "private" on method signature - move cursor to hover point
127127
UIBotTestUtils.hoverInAppServerCfgFile(remoteRobot, flaggedString, SYSTEM_RESOURCE_2_JAVA, UIBotTestUtils.PopupType.DIAGNOSTIC);
128128

129129
String foundHoverData = UIBotTestUtils.getHoverStringData(remoteRobot, UIBotTestUtils.PopupType.DIAGNOSTIC);
@@ -174,7 +174,7 @@ public void testJakartaQuickFixInJavaPart() {
174174
// validate public signature no longer found in java part
175175
TestUtils.validateStringNotInFile(pathToSrc.toString(), publicString);
176176

177-
//there should be a diagnostic - move cursor to hover point
177+
// there should be a diagnostic - move cursor to hover point
178178
UIBotTestUtils.hoverForQuickFixInAppFile(remoteRobot, flaggedString, SYSTEM_RESOURCE_2_JAVA, quickfixChooserString);
179179

180180
// trigger and use the quickfix popup attached to the diagnostic

src/test/java/io/openliberty/tools/intellij/it/SingleModLibertyLSTestCommon.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ public void testQuickFixInServerXML() {
454454
try {
455455
UIBotTestUtils.insertStanzaInAppServerXML(remoteRobot, stanzaSnippet, 20, 0, UIBotTestUtils.InsertionType.ELEMENT, false);
456456

457-
//there should be a diagnostic - move cursor to hover point
457+
// there should be a diagnostic - move cursor to hover point
458458
UIBotTestUtils.hoverForQuickFixInAppFile(remoteRobot, flaggedString, SERVER_XML, quickfixChooserString);
459459

460460
UIBotTestUtils.chooseQuickFix(remoteRobot, quickfixChooserString);

src/test/java/io/openliberty/tools/intellij/it/SingleModMPLSTestCommon.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public void testMPDiagnosticsInJavaPart() {
135135
String foundHoverData = null;
136136
int maxWait = 60, delay = 5; // in some cases it can take 35s for the diagnostic to appear
137137
for (int i = 0; i <= maxWait; i += delay) {
138-
//there should be a diagnostic - move cursor to hover point
138+
// there should be a diagnostic - move cursor to hover point
139139
UIBotTestUtils.hoverInAppServerCfgFile(remoteRobot, flaggedString, SERVICE_LIVE_HEALTH_CHECK_JAVA, UIBotTestUtils.PopupType.DIAGNOSTIC);
140140

141141
foundHoverData = UIBotTestUtils.getHoverStringData(remoteRobot, UIBotTestUtils.PopupType.DIAGNOSTIC);
@@ -177,7 +177,7 @@ public void testMPQuickFixInJavaFile() {
177177
// validate @Liveness no longer found in java part
178178
TestUtils.validateStringNotInFile(pathToSrc.toString(), livenessString);
179179

180-
//there should be a diagnostic - move cursor to hover point
180+
// there should be a diagnostic - move cursor to hover point
181181
UIBotTestUtils.hoverForQuickFixInAppFile(remoteRobot, flaggedString, SERVICE_LIVE_HEALTH_CHECK_JAVA, quickfixChooserString);
182182

183183
// trigger and use the quickfix popup attached to the diagnostic

0 commit comments

Comments
 (0)