From 9cfc4bcb5cc8b70c37de7d532485c924c88cc090 Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Tue, 22 Jun 2021 13:29:33 +0200 Subject: [PATCH] Improve wording for failing test case --- test/smoke/src/areas/workbench/localization.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }