File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ describe('MdSelect', () => {
281281 trigger . click ( ) ;
282282 fixture . detectChanges ( ) ;
283283
284- const option = overlayContainerElement . querySelector ( 'md-option' ) ;
284+ const option = overlayContainerElement . querySelector ( 'md-option' ) ! ;
285285 const event = dispatchKeyboardEvent ( option , 'keydown' , SPACE ) ;
286286
287287 expect ( event . defaultPrevented ) . toBe ( true ) ;
@@ -291,7 +291,7 @@ describe('MdSelect', () => {
291291 trigger . click ( ) ;
292292 fixture . detectChanges ( ) ;
293293
294- const option = overlayContainerElement . querySelector ( 'md-option' ) ;
294+ const option = overlayContainerElement . querySelector ( 'md-option' ) ! ;
295295 const event = dispatchKeyboardEvent ( option , 'keydown' , ENTER ) ;
296296
297297 expect ( event . defaultPrevented ) . toBe ( true ) ;
You can’t perform that action at this time.
0 commit comments