We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b88f00b commit 8289f6aCopy full SHA for 8289f6a
cmd/sync/aws_test.go
@@ -89,7 +89,7 @@ func TestValidateAWSConfigValid(t *testing.T) {
89
90
err := validateAWSConfig(cfg)
91
if err != nil {
92
- t.Errorf("validateAWSConfig() failed for the valid config: %w", err)
+ t.Errorf("validateAWSConfig() failed for the valid config: %v", err)
93
}
94
95
cmd/sync/azure_test.go
@@ -95,7 +95,7 @@ func TestValidateAzureConfigValid(t *testing.T) {
96
err := validateAzureConfig(cfg)
97
98
- t.Errorf("validateAzureConfig() failed for the valid config: %w", err)
+ t.Errorf("validateAzureConfig() failed for the valid config: %v", err)
99
100
101
0 commit comments