Skip to content

Commit

Permalink
Merge pull request #471 from magento-firedrakes/MTA-3802
Browse files Browse the repository at this point in the history
Fixed issue:
- MTA-3802: Wrong fail of Magento Health Index - CHI: Undefined offset in ClassScanner.php
  • Loading branch information
MomotenkoNatalia authored Oct 7, 2016
2 parents c0f4002 + e2907d3 commit f656e14
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public function testBuild()
[$tableName],
['catalog_product_website']
)
->willReturn(
->willReturnOnConsecutiveCalls(
$tableName,
'catalog_product_website'
);
Expand Down Expand Up @@ -184,12 +184,12 @@ public function testBuild()
],
[
$temporaryTableName,
"e.{$linkField} = ${temporaryTableName}.{$linkField}",
"e.{$linkField} = {$temporaryTableName}.{$linkField}",
[$linkField]
],
[
$temporaryValueTableName,
"e.${linkField} = " . $temporaryValueTableName . ".${linkField}",
"e.{$linkField} = " . $temporaryValueTableName . ".{$linkField}",
[$linkField]
]
)->willReturnSelf();
Expand Down

0 comments on commit f656e14

Please sign in to comment.