Skip to content

Commit 43538dc

Browse files
author
Vitaliy Boyko
committed
Broken tests TEST
1 parent 392a6f1 commit 43538dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/magento/idea/magento2plugin/inspections/xml/CacheableFalseInDefaultLayoutInspection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public PsiElementVisitor buildVisitor(final @NotNull ProblemsHolder holder, fina
2424
@Override
2525
public void visitXmlAttribute(XmlAttribute attribute) {
2626
String fileName = holder.getFile().getName();
27-
if (!fileName.equals(LayoutXml.DefaultFileName)) return;
27+
//if (!fileName.equals(LayoutXml.DefaultFileName)) return;
2828
final String text = attribute.getValue();
2929
final String attributeName = attribute.getName();
3030
if (!attributeName.equals(LayoutXml.CacheableAttributeName)) return;

0 commit comments

Comments
 (0)