Skip to content

Commit d7ad584

Browse files
authored
update exception message
1 parent e46aaa1 commit d7ad584

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/tests/integration/testsuite/Magento/Framework/View/LayoutTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,8 @@ public function addContainerDataProvider()
273273
public function testAddContainerInvalidHtmlTag()
274274
{
275275
$msg = 'Html tag "span" is forbidden for usage in containers. ' .
276-
'Consider to use one of the allowed: dd, div, dl, fieldset, main, header, ' .
277-
'footer, ol, p, section, table, tfoot, ul, nav.';
276+
'Consider to use one of the allowed: aside, dd, div, dl, fieldset, main, nav, ' .
277+
'header, footer, ol, p, section, table, tfoot, ul.';
278278
$this->setExpectedException(\Magento\Framework\Exception\LocalizedException::class, $msg);
279279
$this->_layout->addContainer('container', 'Container', ['htmlTag' => 'span']);
280280
}

0 commit comments

Comments
 (0)