From 34e12adeb3f39eaa9dd8ffa688c8dfa48ef435aa Mon Sep 17 00:00:00 2001 From: Alexander Doroshko Date: Thu, 19 Jul 2018 19:45:24 +0300 Subject: [PATCH] WEB-33452 Changing vue component tag doesnt change closing tag --- .../com/intellij/testFramework/fixtures/EditorTestFixture.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/testFramework/src/com/intellij/testFramework/fixtures/EditorTestFixture.java b/platform/testFramework/src/com/intellij/testFramework/fixtures/EditorTestFixture.java index 07f987ff7543..4844d28b8399 100644 --- a/platform/testFramework/src/com/intellij/testFramework/fixtures/EditorTestFixture.java +++ b/platform/testFramework/src/com/intellij/testFramework/fixtures/EditorTestFixture.java @@ -274,7 +274,7 @@ public class EditorTestFixture { assertNotNull(lookup); lookup.finishLookup(completionChar); }; - CommandProcessor.getInstance().executeCommand(myProject, command, null, null); + CommandProcessor.getInstance().executeCommand(myProject, command, null, null, myEditor.getDocument()); } public PsiElement getElementAtCaret() {