From 666e2761b3935da896feb9f434bd6045e449323c Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Mon, 24 Jun 2024 14:07:08 +0200 Subject: [PATCH] chore: fix tests --- providers/dns/ovh/ovh_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/providers/dns/ovh/ovh_test.go b/providers/dns/ovh/ovh_test.go index bebce1e40e9..e735702f4ca 100644 --- a/providers/dns/ovh/ovh_test.go +++ b/providers/dns/ovh/ovh_test.go @@ -100,7 +100,7 @@ func TestNewDNSProvider(t *testing.T) { EnvClientID: "", EnvClientSecret: "", }, - expected: "ovh: new client: missing authentication information, you need to provide one of the following: application_key/application_secret, client_id/client_secret, or access_token", + expected: "ovh: new client: missing authentication information, you need to provide at least an application_key/application_secret or a client_id/client_secret", }, { desc: "mixed auth", @@ -224,7 +224,7 @@ func TestNewDNSProviderConfig(t *testing.T) { }, { desc: "missing credentials", - expected: "ovh: new client: missing authentication information, you need to provide one of the following: application_key/application_secret, client_id/client_secret, or access_token", + expected: "ovh: new client: missing authentication information, you need to provide at least an application_key/application_secret or a client_id/client_secret", }, { desc: "mixed auth",