From 64a93649fd09dffcc8ba0af92821d806b5071052 Mon Sep 17 00:00:00 2001 From: "james.haytko" Date: Tue, 14 Nov 2023 12:40:19 -0600 Subject: [PATCH] only fixed original capitalization changes --- cmd/transform/create.go | 2 +- cmd/transform/preview.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/transform/create.go b/cmd/transform/create.go index fe67fd5..ea91099 100644 --- a/cmd/transform/create.go +++ b/cmd/transform/create.go @@ -49,7 +49,7 @@ func newCreateCommand() *cobra.Command { log.Debug("Transform", "transform", transform) if transform.GetName() == "" { - return fmt.Errorf("The transform must have a name") + return fmt.Errorf("the transform must have a name") } apiClient, err := config.InitAPIClient() diff --git a/cmd/transform/preview.go b/cmd/transform/preview.go index 1beccaa..3c9fde3 100644 --- a/cmd/transform/preview.go +++ b/cmd/transform/preview.go @@ -143,7 +143,7 @@ func newPreviewCommand() *cobra.Command { accountAttName = def.Input.Attributes.AttributeName sourceName = def.Input.Attributes.SourceName } else { - return fmt.Errorf("Unknown transform definition encountered when parsing identity profile: " + transType) + return fmt.Errorf("unknown transform definition encountered when parsing identity profile: " + transType) } } }