fix(forms): fix broken unit test (#14179)

This commit is contained in:
Dzmitry Shylovich 2017-01-30 21:07:09 +03:00 committed by Miško Hevery
parent d43c573ebc
commit 1df9319af1
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ export function main() {
}));
it('should ngModel hold ime events until compositionend', fakeAsync(() => {
const fixture = TestBed.createComponent(StandaloneNgModel);
const fixture = initTest(StandaloneNgModel);
// model -> view
const inputEl = fixture.debugElement.query(By.css('input'));
const inputNativeEl = inputEl.nativeElement;