File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/Magento/FunctionalTestingFramework/Util Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,6 @@ public function reset()
108
108
*/
109
109
public function printErrorSummary ()
110
110
{
111
-
112
111
if (is_array (array_keys ($ this ->errors ))) {
113
112
foreach (array_keys ($ this ->errors ) as $ type ) {
114
113
$ totalErrors = count ($ this ->getErrorsByType ($ type ));
@@ -126,7 +125,7 @@ public function printErrorSummary()
126
125
. strval ($ totalNotGenErrors )
127
126
. ' '
128
127
. ucfirst ($ type )
129
- . " failed to generate "
128
+ . " failed to generate. See mftf.log for details. "
130
129
);
131
130
}
132
131
if ($ totalAnnotationErrors > 0 ) {
@@ -136,7 +135,7 @@ public function printErrorSummary()
136
135
. strval ($ totalAnnotationErrors )
137
136
. ' '
138
137
. ucfirst ($ type )
139
- . " generated with annotation errors "
138
+ . " generated with annotation errors. See mftf.log for details. "
140
139
);
141
140
}
142
141
}
You can’t perform that action at this time.
0 commit comments