We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 334416c commit e5c9879Copy full SHA for e5c9879
src/Magento/FunctionalTestingFramework/StaticCheck/TestDependencyCheck.php
@@ -215,7 +215,8 @@ private function findErrorsInFileSet($files)
215
216
if (!empty($violatingReferences)) {
217
// Build error output
218
- $errorOutput = "\nFile \"{$filePath->getRealPath()}\"\ncontains entity references that violate dependency constraints:\n\t\t";
+ $errorOutput = "\nFile \"{$filePath->getRealPath()}\"";
219
+ $errorOutput .= "\ncontains entity references that violate dependency constraints:\n\t\t";
220
foreach ($violatingReferences as $entityName => $files) {
221
$errorOutput .= "\n\t {$entityName} from module(s): " . implode(", ", $files);
222
}
0 commit comments