From ad2fcaeb97ef7a8eaddae48b3a7b9e0bf51b181c Mon Sep 17 00:00:00 2001 From: Shahzad Lone Date: Mon, 25 Nov 2024 14:13:42 -0500 Subject: [PATCH] ci: Fix the gql mutation running in all tests (#3267) ## Relevant issue(s) Resolves #3266 ## Description - Remove the overwriting - Improve logging --- tests/integration/utils.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/utils.go b/tests/integration/utils.go index dfd3096bd3..bf3daffff3 100644 --- a/tests/integration/utils.go +++ b/tests/integration/utils.go @@ -2251,7 +2251,7 @@ func skipIfClientTypeUnsupported( } if len(filteredClients) == 0 { - t.Skipf("test does not support any given client type. Type: %v", supportedClientTypes) + t.Skipf("test does not support any given client type. Supported Type: %v", supportedClientTypes.Value()) } return filteredClients @@ -2292,7 +2292,7 @@ func skipIfDatabaseTypeUnsupported( } if len(filteredDatabases) == 0 { - t.Skipf("test does not support any given database type. Type: %v", filteredDatabases) + t.Skipf("test does not support any given database type. Supported Type: %v", supportedDatabaseTypes.Value()) } return filteredDatabases