diff --git a/test/smoke/src/areas/workbench/localization.test.ts b/test/smoke/src/areas/workbench/localization.test.ts index 697b0145e23..89ed4461527 100644 --- a/test/smoke/src/areas/workbench/localization.test.ts +++ b/test/smoke/src/areas/workbench/localization.test.ts @@ -33,7 +33,7 @@ export function setup(opts: minimist.ParsedArgs) { const result = await app.workbench.localization.getLocalizedStrings(); if (app.quality === Quality.Dev || app.remote) { if (result.open !== 'open' || result.close !== 'close' || result.find !== 'find') { - throw new Error(`Received localized strings: ${JSON.stringify(result, undefined, 0)}`); + throw new Error(`Received wrong localized strings: ${JSON.stringify(result, undefined, 0)}`); } return; }