File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/com/magento/idea/magento2plugin/inspections/php Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ protected void assertHasHighlighting(String message) {
47
47
}
48
48
49
49
protected void assertHasNoHighlighting (String message ) {
50
- String highlightingNotFound = "Failed that documents not contains highlighting with the description `%s`" ;
50
+ String highlightingFound = "Failed that documents not contains highlighting with the description `%s`" ;
51
51
52
52
List <HighlightInfo > highlightingList = myFixture .doHighlighting ();
53
53
if (highlightingList .isEmpty ()) {
@@ -57,7 +57,7 @@ protected void assertHasNoHighlighting(String message) {
57
57
for (HighlightInfo highlighting :
58
58
highlightingList ) {
59
59
if (highlighting .getDescription ().equals (message )) {
60
- fail (String .format (highlightingNotFound , message ));
60
+ fail (String .format (highlightingFound , message ));
61
61
}
62
62
}
63
63
}
You can’t perform that action at this time.
0 commit comments