@@ -395,7 +395,6 @@ describe('MatSelect', () => {
395395 it ( 'should open the panel when pressing a vertical arrow key on a closed multiple select' ,
396396 fakeAsync ( ( ) => {
397397 fixture . destroy ( ) ;
398- flush ( ) ;
399398
400399 const multiFixture = TestBed . createComponent ( MultiSelect ) ;
401400 const instance = multiFixture . componentInstance ;
@@ -421,7 +420,6 @@ describe('MatSelect', () => {
421420 it ( 'should open the panel when pressing a horizontal arrow key on closed multiple select' ,
422421 fakeAsync ( ( ) => {
423422 fixture . destroy ( ) ;
424- flush ( ) ;
425423
426424 const multiFixture = TestBed . createComponent ( MultiSelect ) ;
427425 const instance = multiFixture . componentInstance ;
@@ -442,7 +440,6 @@ describe('MatSelect', () => {
442440
443441 it ( 'should do nothing when typing on a closed multi-select' , fakeAsync ( ( ) => {
444442 fixture . destroy ( ) ;
445- flush ( ) ;
446443
447444 const multiFixture = TestBed . createComponent ( MultiSelect ) ;
448445 const instance = multiFixture . componentInstance ;
@@ -488,7 +485,6 @@ describe('MatSelect', () => {
488485 it ( 'should not shift focus when the selected options are updated programmatically ' +
489486 'in a multi select' , fakeAsync ( ( ) => {
490487 fixture . destroy ( ) ;
491- flush ( ) ;
492488
493489 const multiFixture = TestBed . createComponent ( MultiSelect ) ;
494490
@@ -537,7 +533,6 @@ describe('MatSelect', () => {
537533
538534 it ( 'should not open a multiple select when tabbing through' , fakeAsync ( ( ) => {
539535 fixture . destroy ( ) ;
540- flush ( ) ;
541536
542537 const multiFixture = TestBed . createComponent ( MultiSelect ) ;
543538
@@ -556,7 +551,6 @@ describe('MatSelect', () => {
556551 it ( 'should toggle the next option when pressing shift + DOWN_ARROW on a multi-select' ,
557552 fakeAsync ( ( ) => {
558553 fixture . destroy ( ) ;
559- flush ( ) ;
560554
561555 const multiFixture = TestBed . createComponent ( MultiSelect ) ;
562556 const event = createKeyboardEvent ( 'keydown' , DOWN_ARROW ) ;
@@ -585,7 +579,6 @@ describe('MatSelect', () => {
585579 it ( 'should toggle the previous option when pressing shift + UP_ARROW on a multi-select' ,
586580 fakeAsync ( ( ) => {
587581 fixture . destroy ( ) ;
588- flush ( )
589582
590583 const multiFixture = TestBed . createComponent ( MultiSelect ) ;
591584 const event = createKeyboardEvent ( 'keydown' , UP_ARROW ) ;
@@ -653,7 +646,6 @@ describe('MatSelect', () => {
653646
654647 it ( 'should set `aria-multiselectable` to true on multi-select instances' , fakeAsync ( ( ) => {
655648 fixture . destroy ( ) ;
656- flush ( ) ;
657649
658650 const multiFixture = TestBed . createComponent ( MultiSelect ) ;
659651
@@ -740,7 +732,6 @@ describe('MatSelect', () => {
740732 it ( 'should restore focus to the trigger after selecting an option in multi-select mode' ,
741733 fakeAsync ( ( ) => {
742734 fixture . destroy ( ) ;
743- flush ( ) ;
744735
745736 const multiFixture = TestBed . createComponent ( MultiSelect ) ;
746737 const instance = multiFixture . componentInstance ;
0 commit comments