Skip to content

Commit

Permalink
chore: fix broken test build caused by merge conflict (#5339)
Browse files Browse the repository at this point in the history
  • Loading branch information
jelbourn authored Jun 23, 2017
1 parent 8c9c11a commit 06070ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/select/select.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ describe('MdSelect', () => {
trigger.click();
fixture.detectChanges();

const option = overlayContainerElement.querySelector('md-option');
const option = overlayContainerElement.querySelector('md-option')!;
const event = dispatchKeyboardEvent(option, 'keydown', SPACE);

expect(event.defaultPrevented).toBe(true);
Expand All @@ -291,7 +291,7 @@ describe('MdSelect', () => {
trigger.click();
fixture.detectChanges();

const option = overlayContainerElement.querySelector('md-option');
const option = overlayContainerElement.querySelector('md-option')!;
const event = dispatchKeyboardEvent(option, 'keydown', ENTER);

expect(event.defaultPrevented).toBe(true);
Expand Down

0 comments on commit 06070ae

Please sign in to comment.