Skip to content

Commit 23ee808

Browse files
committed
update
1 parent f590650 commit 23ee808

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

app/code/core/Mage/Adminhtml/Block/Widget/Container.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public function getHeaderText()
253253
*/
254254
public function getHeaderCssClass()
255255
{
256-
return 'head-' . strtr($this->_controller, '_', '-');
256+
return 'icon-head head-' . strtr($this->_controller, '_', '-');
257257
}
258258

259259
/**

cypress/e2e/backend/routes/system/catalog/sitemap.cy.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ describe('Checks admin system sitmap settings', () => {
2121
it(`tests invalid string priority`, () => {
2222
cy
2323
.get('#sitemap_category_priority')
24-
.clear()
24+
.clear({ force: true })
2525
.type(route.validate.priority.invalidString)
2626
.should('have.value', route.validate.priority.invalidString);
2727
cy
2828
.get('#sitemap_product_priority')
29-
.clear()
29+
.clear({ force: true })
3030
.type(route.validate.priority.invalidString)
3131
.should('have.value', route.validate.priority.invalidString);
3232
cy
3333
.get('#sitemap_page_priority')
34-
.clear()
34+
.clear({ force: true })
3535
.type(route.validate.priority.invalidString)
3636
.should('have.value', route.validate.priority.invalidString);
3737

@@ -47,17 +47,17 @@ describe('Checks admin system sitmap settings', () => {
4747
it(`tests invalid number priority`, () => {
4848
cy
4949
.get('#sitemap_category_priority')
50-
.clear()
50+
.clear({ force: true })
5151
.type(route.validate.priority.invalidNumber)
5252
.should('have.value', route.validate.priority.invalidNumber);
5353
cy
5454
.get('#sitemap_product_priority')
55-
.clear()
55+
.clear({ force: true })
5656
.type(route.validate.priority.invalidNumber)
5757
.should('have.value', route.validate.priority.invalidNumber);
5858
cy
5959
.get('#sitemap_page_priority')
60-
.clear()
60+
.clear({ force: true })
6161
.type(route.validate.priority.invalidNumber)
6262
.should('have.value', route.validate.priority.invalidNumber);
6363

@@ -73,15 +73,15 @@ describe('Checks admin system sitmap settings', () => {
7373
it(`tests empty priority`, () => {
7474
cy
7575
.get('#sitemap_category_priority')
76-
.clear()
76+
.clear({ force: true })
7777
.should('have.value', '');
7878
cy
7979
.get('#sitemap_product_priority')
80-
.clear()
80+
.clear({ force: true })
8181
.should('have.value', '');
8282
cy
8383
.get('#sitemap_page_priority')
84-
.clear()
84+
.clear({ force: true })
8585
.should('have.value', '');
8686

8787
cy.log('Clicking on Save Config button');

0 commit comments

Comments
 (0)