fix(language-service): add closing quote in invalid test template (#32785)

Fixes an invalid TypeScript code in the language service tests. I must
have missed this while reviewing previously; sorry about that!

PR Close #32785
This commit is contained in:
ayazhafiz 2019-09-19 19:31:35 -05:00 committed by atscott
parent 66658c447f
commit 01e4d44e8c
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ describe('TypeScriptServiceHost', () => {
import {Component} from '@angular/core';
@Component({
template: '<div>Hello</div>
template: '<div>Hello</div>',
})
export class HelloComponent {}
`);