Skip to content

Commit

Permalink
Website list test fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
convenient committed Feb 11, 2017
1 parent 996de8a commit f0c2150
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
use Symfony\Component\Console\Helper\TableHelper;
use Magento\Store\Model\Website;
use Magento\Framework\Console\Cli;
use Magento\Store\Api\WebsiteRepositoryInterface;

/**
* @package Magento\Store\Test\Unit\Console\Command
Expand All @@ -32,7 +33,7 @@ protected function setUp()
{
$this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);

$this->websiteRepositoryMock = $this->getMockForAbstractClass(\Magento\Store\Api\WebsiteRepositoryInterface::class);
$this->websiteRepositoryMock = $this->getMockForAbstractClass(WebsiteRepositoryInterface::class);

$this->command = $this->objectManager->getObject(
WebsiteListCommand::class,
Expand Down

0 comments on commit f0c2150

Please sign in to comment.