From 8187079bab33e376b0cb622ca8a9862ebde83577 Mon Sep 17 00:00:00 2001 From: Hristo Anastasov Date: Thu, 20 Dec 2018 15:18:37 +0200 Subject: [PATCH] test(grid): fix failing test #3467 --- .../src/lib/grids/tree-grid/tree-grid.component.spec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.spec.ts b/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.spec.ts index 1f41730b114..137f256fa68 100644 --- a/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.spec.ts +++ b/projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.spec.ts @@ -64,7 +64,6 @@ describe('IgxTreeGrid Component Tests', () => { it(`should render all records exactly if height is 100% and parent container\'s height is unset and there are fewer than 10 records in the data view`, fakeAsync(() => { - fix = TestBed.createComponent(IgxTreeGridWrappedInContComponent); grid.height = '100%'; fix.componentInstance.data = fix.componentInstance.data.slice(0, 1); tick(); @@ -78,7 +77,6 @@ describe('IgxTreeGrid Component Tests', () => { it(`should render 11 records if height is 100% and parent container\'s height is unset and display density is changed`, fakeAsync(() => { - fix = TestBed.createComponent(IgxTreeGridWrappedInContComponent); grid.height = '100%'; fix.componentInstance.density = DisplayDensity.compact; tick();