Skip to content

Commit 62bec99

Browse files
committed
chore(*): Fix failing test
1 parent 2d9c40d commit 62bec99

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,8 @@ describe('IgxGrid - GroupBy #grid', () => {
530530
for (const grRow of groupRows) {
531531
const elem = grRow.groupContent.nativeElement;
532532
const grVal = grRow.groupRow.value === null ? '' : grRow.groupRow.value.toString();
533-
const expectedText = 'Total items with value:' + grVal +
533+
const expectedText = 'Grouping by "Is it Released". ' +
534+
'Total items with value:' + grVal +
534535
' are ' + grRow.groupRow.records.length;
535536
expect(elem.innerText.trim(['\n', '\r', ' '])).toEqual(expectedText);
536537
const expander = grRow.nativeElement.querySelector('.igx-grid__grouping-indicator');

0 commit comments

Comments
 (0)