diff --git a/ts/test-both/types/setupI18n_test.ts b/ts/test-both/types/setupI18n_test.ts index ad762bbc95b6..53d3448bd1a2 100644 --- a/ts/test-both/types/setupI18n_test.ts +++ b/ts/test-both/types/setupI18n_test.ts @@ -54,13 +54,10 @@ describe('setupI18n', () => { const intl = i18n.getIntl(); assert.isObject(intl); const result = intl.formatMessage( - { id: 'icu:emptyInboxMessage' }, - { composeIcon: 'ICONIC' } - ); - assert.equal( - result, - 'Click the ICONIC above and search for your contacts or groups to message.' + { id: 'icu:contactAvatarAlt' }, + { name: 'NAME' } ); + assert.equal(result, 'Avatar for contact NAME'); }); }); });