diff --git a/cmd/sync/aws_test.go b/cmd/sync/aws_test.go index 9f5da8d66..272b5990a 100644 --- a/cmd/sync/aws_test.go +++ b/cmd/sync/aws_test.go @@ -89,7 +89,7 @@ func TestValidateAWSConfigValid(t *testing.T) { err := validateAWSConfig(cfg) if err != nil { - t.Errorf("validateAWSConfig() failed for the valid config: %w", err) + t.Errorf("validateAWSConfig() failed for the valid config: %v", err) } } diff --git a/cmd/sync/azure_test.go b/cmd/sync/azure_test.go index ad0e50742..0ae3b8918 100644 --- a/cmd/sync/azure_test.go +++ b/cmd/sync/azure_test.go @@ -95,7 +95,7 @@ func TestValidateAzureConfigValid(t *testing.T) { err := validateAzureConfig(cfg) if err != nil { - t.Errorf("validateAzureConfig() failed for the valid config: %w", err) + t.Errorf("validateAzureConfig() failed for the valid config: %v", err) } }