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', () => {
281
281
trigger . click ( ) ;
282
282
fixture . detectChanges ( ) ;
283
283
284
- const option = overlayContainerElement . querySelector ( 'md-option' ) ;
284
+ const option = overlayContainerElement . querySelector ( 'md-option' ) ! ;
285
285
const event = dispatchKeyboardEvent ( option , 'keydown' , SPACE ) ;
286
286
287
287
expect ( event . defaultPrevented ) . toBe ( true ) ;
@@ -291,7 +291,7 @@ describe('MdSelect', () => {
291
291
trigger . click ( ) ;
292
292
fixture . detectChanges ( ) ;
293
293
294
- const option = overlayContainerElement . querySelector ( 'md-option' ) ;
294
+ const option = overlayContainerElement . querySelector ( 'md-option' ) ! ;
295
295
const event = dispatchKeyboardEvent ( option , 'keydown' , ENTER ) ;
296
296
297
297
expect ( event . defaultPrevented ) . toBe ( true ) ;
You can’t perform that action at this time.
0 commit comments