Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
marinagociu committed Oct 15, 2017
1 parent 3c3168b commit 86f1419
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/code/Magento/Sitemap/Test/Unit/Model/ObserverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ public function testScheduledGenerateSitemapsSendsExceptionEmail()
->method('getIterator')
->willReturn(new \ArrayIterator([$this->sitemapMock]));

$this->sitemapMock->expects($this->once())->method('generateXml')->willThrowException(new \Exception($exception));
$this->sitemapMock->expects($this->once())
->method('generateXml')
->willThrowException(new \Exception($exception));

$this->scopeConfigMock->expects($this->at(1))
->method('getValue')
Expand Down

0 comments on commit 86f1419

Please sign in to comment.