From e792b717c5174b33ce55ec6ff5e4523db86c9595 Mon Sep 17 00:00:00 2001 From: Pedro Silva Date: Fri, 12 May 2023 12:16:48 +0100 Subject: [PATCH] Update qa-core/src/account-api/api/apis/LicenseAPI.ts Co-authored-by: Rory Powell --- qa-core/src/account-api/api/apis/LicenseAPI.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa-core/src/account-api/api/apis/LicenseAPI.ts b/qa-core/src/account-api/api/apis/LicenseAPI.ts index f420ab44b9..5540d68c83 100644 --- a/qa-core/src/account-api/api/apis/LicenseAPI.ts +++ b/qa-core/src/account-api/api/apis/LicenseAPI.ts @@ -22,7 +22,7 @@ export default class LicenseAPI { ) if (response.status !== 200) { - throw new Error(`License Error: ${response.status}`) + throw new Error(`Could not update license for accountId=${accountId}: ${response.status}`) } return [response, json] }