From e21fcaf2398dfd9aed54136524fabd39866dfca4 Mon Sep 17 00:00:00 2001 From: DivisionByZero Date: Sun, 30 Jun 2024 19:06:31 +0200 Subject: refactor(locale): group person entries by gender (#2938) --- test/utils/merge-locales.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/utils') diff --git a/test/utils/merge-locales.spec.ts b/test/utils/merge-locales.spec.ts index 3fb24ff3..11b4dc71 100644 --- a/test/utils/merge-locales.spec.ts +++ b/test/utils/merge-locales.spec.ts @@ -65,12 +65,12 @@ describe('mergeLocales', () => { const locale1: LocaleDefinition = { metadata: { title: 'a' }, location: { city: ['a'] }, - person: { first_name: ['a'] }, + person: { suffix: ['a'] }, }; const locale2: LocaleDefinition = { metadata: { title: 'b' }, animal: { cat: ['b'] }, - person: { last_name: ['b'] }, + person: { bio_pattern: ['b'] }, }; const locale3: LocaleDefinition = { metadata: { title: 'c' }, @@ -85,7 +85,7 @@ describe('mergeLocales', () => { animal: { cat: ['b'] }, color: { human: ['c'] }, location: { city: ['a'] }, - person: { first_name: ['a'], last_name: ['b'] }, + person: { suffix: ['a'], bio_pattern: ['b'] }, }); }); }); -- cgit v1.2.3