Skip to content

Commit c616509

Browse files
author
Sergii Kovalenko
committed
MAGETWO-87190: Test coverage for critical logic
1 parent 8d18c36 commit c616509

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

lib/internal/Magento/Framework/Config/Reader/Filesystem.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ public function read($scope = null)
125125
$scope = $scope ?: $this->_defaultScope;
126126
$fileList = $this->_fileResolver->get($this->_fileName, $scope);
127127
if (!count($fileList)) {
128-
var_dump('MISSSS', $scope);
129128
return [];
130129
}
131130
$output = $this->_readFiles($fileList);

lib/internal/Magento/Framework/Shell.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public function execute($command, array $arguments = [])
5656

5757
exec($command, $output, $exitCode);
5858
$output = implode(PHP_EOL, $output);
59+
var_dump($output);
5960
$this->log($output);
6061
if ($exitCode) {
6162
$commandError = new \Exception($output, $exitCode);

0 commit comments

Comments
 (0)