diff --git a/tests/utils/translation.collection.spec.ts b/tests/utils/translation.collection.spec.ts index c81f3c5..c9e51b2 100644 --- a/tests/utils/translation.collection.spec.ts +++ b/tests/utils/translation.collection.spec.ts @@ -74,7 +74,7 @@ describe('StringCollection', () => { }); it('should intersect with passed collection and keep original values', () => { - collection = new TranslationCollection({ red: 'rød', blue: 'blå' }); + collection = new TranslationCollection({ red: 'rød', green: 'grøn', blue: 'blå' }); const newCollection = new TranslationCollection({ red: 'no value', blue: 'also no value' }); expect(collection.intersect(newCollection).values).to.deep.equal({ red: 'rød', blue: 'blå' }); });