summaryrefslogtreecommitdiff
path: root/xml/tests/src/com/intellij/codeInsight/XmlTagWriteTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'xml/tests/src/com/intellij/codeInsight/XmlTagWriteTest.java')
-rw-r--r--xml/tests/src/com/intellij/codeInsight/XmlTagWriteTest.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/xml/tests/src/com/intellij/codeInsight/XmlTagWriteTest.java b/xml/tests/src/com/intellij/codeInsight/XmlTagWriteTest.java
index 89cc1263131a..39c77f1ff37b 100644
--- a/xml/tests/src/com/intellij/codeInsight/XmlTagWriteTest.java
+++ b/xml/tests/src/com/intellij/codeInsight/XmlTagWriteTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2013 JetBrains s.r.o.
+ * Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -48,7 +48,9 @@ public class XmlTagWriteTest extends LightCodeInsightTestCase{
public void test2() throws IncorrectOperationException {
final XmlTag xmlTag = XmlElementFactory.getInstance(getProject()).createTagFromText("<tag1></tag1>");
- WriteCommandAction.runWriteCommandAction(null, new Runnable(){public void run() {
+ WriteCommandAction.runWriteCommandAction(null, new Runnable(){
+ @Override
+ public void run() {
xmlTag.add(xmlTag.createChildTag("tag2", XmlUtil.EMPTY_URI, null, false));
}
});