diff --git a/packages/core/test/i18n_integration_spec.ts b/packages/core/test/i18n_integration_spec.ts index 36c41b49ab..a0babb5886 100644 --- a/packages/core/test/i18n_integration_spec.ts +++ b/packages/core/test/i18n_integration_spec.ts @@ -462,17 +462,16 @@ onlyInIvy('Ivy i18n logic').describe('i18n', function() { expect(element).toHaveText('vingt'); }); - fixmeIvy('FW-909: ICUs inside s throw errors at runtime') - .it('should handle ICUs inside ', () => { - const template = ` - - {age, select, 10 {ten} 20 {twenty} other {other}} - - `; - const fixture = getFixtureWithOverrides({template}); + it('should handle ICUs inside ', () => { + const template = ` + + {age, select, 10 {ten} 20 {twenty} other {other}} + + `; + const fixture = getFixtureWithOverrides({template}); - const element = fixture.nativeElement; - expect(element.innerHTML).toBe('vingt'); - }); + const element = fixture.nativeElement; + expect(element).toHaveText('vingt'); + }); }); });