Skip to content

Commit 312a219

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Fix test.
1 parent 407cd5d commit 312a219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid-add-row-ui.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ describe('IgxTreeGrid - Add Row UI #tGrid', () => {
106106
// check row is added as sibling
107107
expect(treeGrid.rowList.length).toBe(9);
108108
const addedRow = treeGrid.rowList.toArray()[4] as IgxTreeGridRowComponent;
109-
expect(addedRow.rowData.ID).toBe(-2);
109+
expect(addedRow.rowData.Name).toBe(undefined);
110110
// should have same parent record.
111111
expect(addedRow.treeRow.parent).toBe(row.treeRow.parent);
112112
});

0 commit comments

Comments
 (0)