Skip to content

Commit

Permalink
Improve wording for failing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Jun 22, 2021
1 parent e490174 commit 9cfc4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/smoke/src/areas/workbench/localization.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 9cfc4bc

Please sign in to comment.