From a70fc32408ff2f31ef9a5d80066faae16dc93ab7 Mon Sep 17 00:00:00 2001 From: Peter Clement Date: Thu, 29 Jun 2023 09:58:26 +0100 Subject: [PATCH] fix sql error message for qa-core --- qa-core/src/integrations/validators/mysql.integration.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa-core/src/integrations/validators/mysql.integration.spec.ts b/qa-core/src/integrations/validators/mysql.integration.spec.ts index 6ee39731fa..0f0de132fe 100644 --- a/qa-core/src/integrations/validators/mysql.integration.spec.ts +++ b/qa-core/src/integrations/validators/mysql.integration.spec.ts @@ -63,7 +63,7 @@ describe("datasource validators", () => { expect(result).toEqual({ connected: false, error: - "Access denied for user 'root'@'172.17.0.1' (using password: YES)", + "Access denied for the specified user. User does not have the necessary privileges or the provided credentials are incorrect. Please verify the credentials, and ensure that the user has appropriate permissions.", }) }) })