Skip to content

Commit

Permalink
code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alepane21 authored and rostyslav-hymon committed Mar 27, 2018
1 parent 29431e9 commit 47c8d54
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ protected function setUp()
->getMock();
}


public function testStoreIdUsedByUrlRewrite()
{
$cond = '{{table}}.is_autogenerated = 1 AND {{table}}.store_id = 100 AND {{table}}.entity_type = \'category\'';
$this->_model->expects($this->once())
->method('joinTable')
->with(
$this->anything(),
$this->anything(),
$this->anything(),
$this->equalTo('{{table}}.is_autogenerated = 1 AND {{table}}.store_id = 100 AND {{table}}.entity_type = \'category\''),
$this->equalTo($cond),
$this->anything()
);
$this->_model->setStoreId(100);
Expand Down

0 comments on commit 47c8d54

Please sign in to comment.