Skip to content

Commit

Permalink
fixing platform completion test comments
Browse files Browse the repository at this point in the history
Signed-off-by: Arun Venmany <[email protected]>
  • Loading branch information
arunvenmany-ibm committed Oct 23, 2024
1 parent 9448753 commit 87b4999
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public void testPlatformCompletionItem() throws BadLocationException {
"</server>" //
);
//here result should be 2 because it should show only one for CDATA and one for <-
// since ja is entered and javaee-8.0 is included, jakartaee should not be shown because its conflicting with javaee
// since ja is entered and jakartaee-8.0 is included, javaee should not be shown because its conflicting with jakartaee
XMLAssert.testCompletionFor(serverXML, null, serverXMLURI, 2);

serverXML = String.join(newLine, //
Expand All @@ -181,7 +181,7 @@ public void testPlatformCompletionItem() throws BadLocationException {
"</server>" //
);
//here result should be 2 because it should show only one for CDATA and one for <-
// since ja is entered and javaee-8.0 is included, jakartaee should not be shown because its conflicting with javaee
// since jakartaee is entered and jakartaee-9.0 is included, javaee should not be shown because its conflicting with jakartaee
XMLAssert.testCompletionFor(serverXML, null, serverXMLURI, 2);

// repeating same platform to see for any issues
Expand All @@ -195,7 +195,7 @@ public void testPlatformCompletionItem() throws BadLocationException {
"</server>" //
);
//here result should be 2 because it should show only one for CDATA and one for <-
// since ja is entered and javaee-8.0 is included, jakartaee should not be shown because its conflicting with javaee
// since jakartaee is entered and jakartaee-9.0 is included, javaee should not be shown because its conflicting with jakartaee
XMLAssert.testCompletionFor(serverXML, null, serverXMLURI, 2);
}

Expand Down

0 comments on commit 87b4999

Please sign in to comment.