refactor(forms): compile forms cleanly with TypeScript 2.4 (#18462)

This commit is contained in:
Chuck Jazdzewski 2017-08-02 16:29:31 -07:00 committed by Victor Berchet
parent ea07856cc5
commit 5f501c722b
1 changed files with 1 additions and 1 deletions

View File

@ -616,7 +616,7 @@ export function main() {
it('should return true when the component is enabled', () => {
expect(group.contains('required')).toEqual(true);
group.enable('optional');
group.enable();
expect(group.contains('optional')).toEqual(true);
});