We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e786d51 commit e0972bfCopy full SHA for e0972bf
app/code/Magento/Config/Test/Unit/Model/Config/Source/Email/TemplateTest.php
@@ -131,8 +131,12 @@ public function testToOptionArrayWithoutPath()
131
$this->never()
132
)->method(
133
'getTemplateLabel'
134
- )->with('')
135
- ->willThrowException(new \UnexpectedValueException("Email template '' is not defined."));
+ )->with(
+ ''
136
+ )
137
+ ->willThrowException(
138
+ new \UnexpectedValueException("Email template '' is not defined.")
139
+ );
140
141
$expectedResult = [
142
[
@@ -146,4 +150,5 @@ public function testToOptionArrayWithoutPath()
146
150
];
147
151
148
152
$this->assertEquals($expectedResult, $this->_model->toOptionArray());
149
- }}
153
+ }
154
+}
0 commit comments