From d951cef6691c0ec82fb5d6ab7f79f648504973c5 Mon Sep 17 00:00:00 2001 From: Anton Bronnikov Date: Thu, 13 Jun 2024 11:07:46 +0300 Subject: [PATCH] fix: update expected error-message Signed-off-by: Anton Bronnikov --- ovh/configuration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovh/configuration_test.go b/ovh/configuration_test.go index 1f89467..5f3140b 100644 --- a/ovh/configuration_test.go +++ b/ovh/configuration_test.go @@ -64,7 +64,7 @@ func TestConfigFromNonExistingFile(t *testing.T) { client := Client{} err := client.loadConfig("ovh-eu") - td.CmpString(t, err, `missing authentication information, you need to provide at least an application_key/application_secret, or client_id/client_secret, or access_token`) + td.CmpString(t, err, `missing authentication information, you need to provide one of the following: application_key/application_secret, client_id/client_secret, or access_token`) } func TestConfigFromInvalidINIFile(t *testing.T) {