Skip to content

Commit 3676ef5

Browse files
committed
chore(toolbar): Fix failing lint
1 parent fc9b4d6 commit 3676ef5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid-toolbar.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,8 +402,8 @@ describe('IgxGrid - Grid Toolbar #grid', () => {
402402

403403
const button = getColumnPinningButton(fixture);
404404
expect(button).toBeDefined();
405-
const icon = button.nativeElement.querySelector('igx-icon')
406-
const iconName = icon.getAttribute("name");
405+
const icon = button.nativeElement.querySelector('igx-icon');
406+
const iconName = icon.getAttribute('name');
407407
const btnText = button.nativeElement.innerText.toLowerCase();
408408
expect(btnText.includes('0') && iconName === 'unpin').toBe(true);
409409
});

0 commit comments

Comments
 (0)