Skip to content

Commit

Permalink
fix(auth): Broken l10n test (#12101)
Browse files Browse the repository at this point in the history
Because:
- Underlying language strings changed and just so happened to impact test.

This Commit:
- Uses new/updated string l10n string in test.
  • Loading branch information
dschom authored Mar 14, 2022
1 parent 87021d5 commit 6ff2e3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/fxa-auth-server/test/local/l10n/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ describe('Localizer', () => {
);

const result = await l10n.formatValue(
'subscriptionAccountReminderFirst-action',
'subscriptionAccountFinishSetup-action-2',
{}
);

assert.equal(result, 'Passwort erstellen');
assert.equal(result, 'Einführung');
});

it('localizes properly with preferred Dialect', async () => {
Expand Down

0 comments on commit 6ff2e3a

Please sign in to comment.