Skip to content

Commit

Permalink
PR(LOG): Improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzadlone committed Nov 25, 2024
1 parent a61dcd7 commit 101c7ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 101c7ae

Please sign in to comment.