Skip to content

Commit 5a45084

Browse files
committed
Fixed maximum line length validation error
1 parent 384c804 commit 5a45084

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

dev/tests/js/jasmine/tests/app/code/Magento/Catalog/frontend/js/product/breadcrumbs.test.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ define([
2020
},
2121
defaultContext = require.s.contexts._,
2222
menuSelector = '[data-action="navigation"] > ul',
23-
menuItem = $('<li class="level0 category-item"><a href="http://localhost.com/cat1.html" id="ui-id-3">Cat1</a></li>')[0],
23+
menuItem = $(
24+
'<li class="level0 category-item">' +
25+
'<a href="http://localhost.com/cat1.html" id="ui-id-3">Cat1</a>' +
26+
'</li>'
27+
)[0],
2428

2529
/**
2630
* Create context object.

0 commit comments

Comments
 (0)