From 1df9319af1996a8d2a87172a3859908e6fded350 Mon Sep 17 00:00:00 2001 From: Dzmitry Shylovich Date: Mon, 30 Jan 2017 21:07:09 +0300 Subject: [PATCH] fix(forms): fix broken unit test (#14179) --- modules/@angular/forms/test/template_integration_spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/forms/test/template_integration_spec.ts b/modules/@angular/forms/test/template_integration_spec.ts index f753b91ebd..02ff099a82 100644 --- a/modules/@angular/forms/test/template_integration_spec.ts +++ b/modules/@angular/forms/test/template_integration_spec.ts @@ -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;