Skip to content

Commit

Permalink
Fix code action title by adding closing quotation mark
Browse files Browse the repository at this point in the history
Signed-off-by: Jessica He <jhe@redhat.com>
  • Loading branch information
JessicaJHee authored and angelozerr committed Jun 15, 2022
1 parent 82abfce commit 9e879e3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -91,7 +91,7 @@ public void doCodeAction(ICodeActionRequest request, List<CodeAction> codeAction

for (String expectedElementText : expectedElements) {
CodeAction addReplaceRootElement = CodeActionFactory.replaceAt(
"Replace '" + unexpectedElementText + "' with '" + expectedElementText, expectedElementText,
"Replace '" + unexpectedElementText + "' with '" + expectedElementText + "'", expectedElementText,
document.getTextDocument(), diagnostic, ranges);

codeActions.add(addReplaceRootElement);
Expand Down

0 comments on commit 9e879e3

Please sign in to comment.