Skip to content

Commit

Permalink
MAGETWO-57056: [Backport] [GitHub] Configurable product disabling low…
Browse files Browse the repository at this point in the history
…est price associated product still shows its price #4419 - for 2.0

- fix builds
  • Loading branch information
vnayda committed Oct 27, 2016
1 parent da533ee commit 0fa3ed7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function testProcess()
->method('join')
->with(
['status_attr' => $backendTable],
'status_attr.entity_id = ' . BaseSelectProcessorInterface::PRODUCT_RELATION_ALIAS . '.entity_id',
'status_attr.entity_id = ' . BaseSelectProcessorInterface::PRODUCT_RELATION_ALIAS . '.child_id',
[]
)
->willReturnSelf();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function testProcess()
->method('join')
->with(
['stock' => $tableName],
sprintf('stock.product_id = %s.entity_id', BaseSelectProcessorInterface::PRODUCT_RELATION_ALIAS),
'stock.product_id = ' . BaseSelectProcessorInterface::PRODUCT_RELATION_ALIAS . '.child_id',
[]
)
->willReturnSelf();
Expand Down

0 comments on commit 0fa3ed7

Please sign in to comment.