Skip to content

Commit 19bcc5c

Browse files
authored
Merge branch 'master' into dpetev/identifier-migrations
2 parents 526c36f + 1c6bffa commit 19bcc5c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

projects/igniteui-angular/src/lib/drop-down/drop-down.component.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1526,7 +1526,7 @@ describe('IgxDropDown ', () => {
15261526
await wait(200);
15271527
firstItemElement = fixture.componentInstance.dropdownItems.first.element.nativeElement;
15281528
lastItemElement = fixture.componentInstance.dropdownItems.last.element.nativeElement;
1529-
expect(firstItemElement.textContent.trim()).toEqual('Item 1989');
1529+
expect(firstItemElement.textContent.trim()).toEqual('Item 1990');
15301530
expect(lastItemElement.textContent.trim()).toEqual('Item 2000');
15311531
});
15321532
it('Should properly handle keyboard navigation when virtualized', async(() => {
@@ -2215,7 +2215,7 @@ class GroupDropDownComponent {
22152215
styles: [`
22162216
.wrapping-div {
22172217
overflow: hidden;
2218-
height: 420px;
2218+
height: 400px;
22192219
}
22202220
`]
22212221
})
@@ -2235,8 +2235,8 @@ class VirtualizedDropDownComponent {
22352235
id: i
22362236
}));
22372237
}
2238-
public itemsMaxHeight = 420;
2239-
public itemHeight = 42;
2238+
public itemsMaxHeight = 400;
2239+
public itemHeight = 40;
22402240
}
22412241

22422242
@Component({

0 commit comments

Comments
 (0)