Skip to content

Commit

Permalink
fixup! feat: Support multiple commit prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaller committed Feb 17, 2025
1 parent d81cf52 commit 1ea96eb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/utils/yaml_utils/yaml_utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,6 @@ func TestTransformNode(t *testing.T) {
transformIntValueToString := func(node *yaml.Node) (bool, error) {
if node.Kind == yaml.ScalarNode {
if node.ShortTag() == "!!int" {
node.Value = fmt.Sprintf("%s", node.Value)
node.Tag = "!!str"
return true, nil
} else if node.ShortTag() == "!!str" {
Expand Down

0 comments on commit 1ea96eb

Please sign in to comment.