diff --git a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php index 74ab4baa4e990..9b531280f66c6 100644 --- a/app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php +++ b/app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php @@ -131,8 +131,12 @@ public function testToOptionArrayWithoutPath() $this->never() )->method( 'getTemplateLabel' - )->with('') - ->willThrowException(new \UnexpectedValueException("Email template '' is not defined.")); + )->with( + '' + ) + ->willThrowException( + new \UnexpectedValueException("Email template '' is not defined.") + ); $expectedResult = [ [ @@ -146,4 +150,5 @@ public function testToOptionArrayWithoutPath() ]; $this->assertEquals($expectedResult, $this->_model->toOptionArray()); - }} + } +}